Swing Visual Designer for Eclipse

I've been trying to find a good RAD/GUI builder plugin for Eclipse. Any suggestions?

Hi,
It would be good to have some feedback about Swing GUI builders for Eclipse, are they usable and good. I heard much good things on Eclipse and am curious to try (althought NetBeans are still very good for me), but I develop Swing application and porting to SWT is unacceptable for me (it is not so advanced as Swing and I need many features that are in Swing only).

Similar Messages

  • Visual Swing Designer (for Eclipse)

    Hi there
    We've developed a client software with JBuilder. Now we want to move
    the whole project to eclipse.
    Is there a good plugin for Eclipse to design Swing applications? I haven't found one so far.
    JBuilder has a Swing designer, and it is very usable for us. Eclipse
    hasen't such a Swing designer...
    It could also be a external tool, to design our Swing Panels. But it
    has to be a visual Designer tool for swing, like the one for VisualStudio and co.
    Does anybody know a good Designer WORKING Tool? Maybee as plugin for eclipse?
    Greetings,
    Adrian

    Hi,
    It would be good to have some feedback about Swing GUI builders for Eclipse, are they usable and good. I heard much good things on Eclipse and am curious to try (althought NetBeans are still very good for me), but I develop Swing application and porting to SWT is unacceptable for me (it is not so advanced as Swing and I need many features that are in Swing only).

  • VISUAL EDITOR FOR ECLIPSE 3.4 (GANYMEDE)

    Hello, could anybody tell me whether it exists a visual editor for eclipse 3.4 ganymede? And if it exists, where could I download it?
    Thank you very much!
    Fran.

    add this one to your updates site:
    http://update.instantiations.com/wbpro/E-3.4
    but as the previous poster said, this is not an eclipse help forum.
    Try this one perhaps?
    http://www.eclipsezone.com/eclipse/forums/c5605.html

  • Cannot find Orcale bpel designer for eclipse

    Hi,
    I downloaded Oracle BPEL Process Manager, and eclipse 3.2, but I am unable to find the oracle bpel designer for eclipse to download.
    I have the tutorial, but I cannot find the designer at the link provided in tutorial.
    Regards,
    Prakash

    can you tell us which version u use, and which tutorial - we are currently working with the eclipse team to provide a nice solid eclipse BPEL designer for 10.1.3.1..
    the one out there was merely for 10.1.2.0.2
    thank you
    clemens utschig - oracle soa product mgmt

  • Problem while trying to install a visual editor for eclipse

    resolving dependencies...
    error: cannot resolve "eclipse<3.3", a dependency of "eclipse-ve"
    Why?
    Probably because i have newer version of eclipse, but how can i add a Visual Editor for java anyway?
    Thanks

    Many thanks : I had  been directed to this file already, but it was the french version, with many translation mistakes that made it unusable. Much clearer in english.
    I have
    Again the tab problem !
    Message Edité par chilly charly le 12-06-2005 02:45 PM
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • BPEL designer for eclipse develompent and customization

    Can i integrate the bpel designer into my software, there's a way to
    interact with the java eclipse api?
    Are eclipse designer's javadocs ar programmers docs available ?
    Thanks.

    can you tell us which version u use, and which tutorial - we are currently working with the eclipse team to provide a nice solid eclipse BPEL designer for 10.1.3.1..
    the one out there was merely for 10.1.2.0.2
    thank you
    clemens utschig - oracle soa product mgmt

  • Cannot install Swing GUI plugin for Eclipse 2.1

    Hello All,
    I have downloaded a plugin "jgloo" for gui development in eclipse .....but while loading the IDE it is throwing an exception as follows:
    java.lang.NoClassDefFoundError: org.eclipse.swt.awt.SWT_AWT
         at com.cloudgarden.jigloo.editors.FormEditor.fillPalette(FormEditor.java:4302)
    The swt.jar file is already there in the plugins directory and i ve also added it to the build path.....
    Please help me resolve this error
    Thanks in advance,
    KSK

    Hello All,
    I have downloaded a plugin "jgloo" for gui development in eclipse .....but while loading the IDE it is throwing an exception as follows:
    java.lang.NoClassDefFoundError: org.eclipse.swt.awt.SWT_AWT
         at com.cloudgarden.jigloo.editors.FormEditor.fillPalette(FormEditor.java:4302)
    The swt.jar file is already there in the plugins directory and i ve also added it to the build path.....
    Please help me resolve this error
    Thanks in advance,
    KSK

  • BPEL Designer plugin for Eclipse 3.1 - when will it be available?

    As oracle has not only vowed to continue support the Eclipse IDE for the BPEL Designer, but also keep functionality in-line with JDeveloper - I was wondering when a version of this plugin will be available for Eclipse 3.1.
    Could some Oracle rep. please respond to this?

    Excellent!
    Can this be downloaded from OTN?
    At http://www.oracle.com/technology/software/products/ias/bpel/index.html
    I only see: "Oracle BPEL Designer for Eclipse 3.0"
    Or did you try and use BPEL Designer for Eclipse 3.1, using that version and was fortunate enough to get it working ;-)

  • Visual design view in Studio Enterprise 8

    I have recently discovered both Studio Enterprise 8 and Studio Creator, previous to which I was only using netbeans. However, I've been looking for a way to create either JSP applications or standar java applications with an IDE that has a visual design view in it.
    Studio Creator has a visual design view only for JSP pages, but it does not seem to have the robustness of Studio Enterprise 8. Studio Enterprise 8 has a Palette tool, but for the life of me I cannot find the visual design view in it. Is there a way to activate a visual design view in Studio Enterprise 8? or, do I need to download an add-on?, or do I really need to create projects in Studio creator to later transfer only the JSP pages to Studio Enterprise?
    Any help would be greatly appreaciated.
    TGD

    Besides the visual designer for JSP (Creator) , Swing GUI and UML (JSE8), what other types of visual designers are you expecting or wish for in JSE 8?

  • Can't see imported swing code in jDeveloper visual designer

    Hi,
    I developed a small swing utility program in either Eclipse or NetBeans (it's been a while, and i forgot which one I used last). I'm now trying to use jDeveloper for all java development, but ran into this problem: when I look at my JFrame in the visual designer, I see the outer frame object, but none of the nested controls inside (buttons, tabbed panes, etc.). I can see all the code and I see the objects in Structure panel. I know when I migrated between Eclipse and NetBeans I had to make some changes to my code to make it work with the visual designers there. I'm pretty shocked to have the same problem in jDeveloper. Any ideas?
    Thanks,
    Dennis

    That is happening because you must follow some requirements
    if you want to import code and use the visual designer tool:
    - It must be a Java file.
    - It must be free from syntax errors.
    - It must contain a public class (the file name must be the same as the name of the
    public class).
    - It must follow JDeveloper coding conventions:
    * All UI controls are declared as class members or as local variables within jbInit().
    * All UI property settings done in jbInit(). This is necessary in order for the
    JDeveloper UI Editor and Property Inspector to reflect the settings.
    * All property settings set as expressions involve only member UI controls or
    static values.
    - It must have a default constructor.
    Any file that meets the above requirements can be visually designed using the UI Editor and the Property Inspector. You can also visually design a non-UI class.
    Hope this helps !
    Luis R.

  • BPEL Designer installation for eclipse

    How do I get the BPEL designer installation for eclipse, since I cou;dnt find it anywhere, I can download the installation for BPEL Process Manager but not the designer
    Thanks
    Rasika

    that's too bad. I also have wasted some time looking for the eclipse plug in and would have preferred that approach. I've not had good experience with jDeveloper in the past, but even if those issues have been solved, eclipse is a good standard approach that oracle should support

  • Problem in installing BPEL Designer 2.2 for eclipse

    Hi,
    As I said it in the topic, when I want to install the plugin "Oracle BPEL Designer 2.2" for eclipse, I got an error message
    " The version of the eclipse platforms installed in C:\Program Files\eclipse must be at least 3.0 (release)"
    My problem is that I have installed eclipse 3.1 ...
    If you have any idea...
    Thanks in advance,
    Rardo

    oups...
    sorry, I have just seen that there is the same topic here : More eclipse designer install problems

  • How can i install a visual gui editor for eclipse? *newbie-alert!!!*

    hi all!
    i'm quite new to java and eclipse. i have a little experience how to create a gui with awt components, but now i'd like to do it faster with a visual gui editor, something like in visual c++. i'm using eclipse. is there a good ve plugin for eclipse?
    i have downloaded one, but don't have any idea how to install it. please help me! :)
    thanx & gr33tz
    j0sh

    I suggest you use the official VE Plugin: http://www.eclipse.org/vep/
    http://dev.eclipse.org/viewcvs/indextools.cgi/%7Echeckout%7E/vep-home/WebContent/faq.html#install

  • Error in Visual Editor for java with eclipse

    hello eb
    till i ysterday i used visual editor for java with eclipse normally without any problem but to day when i opened eclipse it display me this error :
    Error trying to set new File into editor
    Motif : java.lang.NullPointerException
    and i think that the problem comes from the visual editor plugin because when i add a new frame or even for the old frame it dosent display for me the graphical component like every time
    if si has the solution or can advise me thank you alot and i really dont know what to do .
    it is for my stydy project and i have to finish xorking as fast as possible so if so can help me

    well this forum here is the official java-forum by Sun.
    you are asking for help on Eclipse, a software made by IBM since the cooperation between the two werent that bright all the time.(hence the name eclipse)
    i just looked a few hours myself, and the latest version of the VE was suited for 3.0.2, the version fitting to the latest 3.1 build of eclipse, was still just a release candidate.
    wait a few days/weeks for a final build and retry.

  • BPEL Designer plug-in for Eclipse download link broken

    On the BPEL Process Magare download page at http://www.oracle.com/technology/software/products/ias/bpel/index.html, the link to the BPEL designer plug-in for Eclipse - http://download.oracle.com/otn/nt/bpel/bpelz_0.9.13_win32.exe gives a 404 error.
    Anyone know the correct location?
    Neil

    Kenan,
    I am afraid that the side-by-side versioning does not address the need of in-flight changes because there is not import feature for in-flight instances.
    The side-by-side versioning is designed to let all existing in-flight instances to complete with the existing (unchanged) BPEL definition while new instances are routed to the newer version.
    To deploy a new version of the BPEL project, us the -rev option if you are using the command line tool or the rev attribute is you are using the ant task.
    Sorry for not being more helping. Dynamic changes is a feature we do not really support.
    Edwin

Maybe you are looking for

  • Relationship between condition type and payment term

    Hi, I created a purchase order (only 1 item) with with payment term "Within 14 days 2 % cash discount" So a condition type SKTO auto added for the item with discount is 2%. can anybody show me the relationship between payment term with the condition

  • Interface with portal and outlook

    All, Hello, I am to prepare a technical document regarding Interface between BW 3.5 and MS outlook and the portal. When there are errors when loading flat file (i.e. file does not exist, 0 size file) and when the reports do not run right, we will nee

  • Why do I have to pay for OS X Server again after upgrade to Mavericks?

    This morning I upgraded my Mac Mini from Mountain Lion to Mavericks. After the upgrade I noticed the Server app wasn't available. When I try to start it I see error that this version isn't compatible with my version of OS X. When I go to the AppStore

  • Publishing iPhoto...& iCal Differences

    Whenever I publish my iCal Calendar to .Mac, I get a message that tells me the the URL of my published iCal Calendar. When I export my iPhoto album to .Mac, I DO NOT HAVE A CLUE WHAT the URL is...??????? Hmmmmmmm....anyway..Apple could be consistent?

  • Area or view of sql sentences with error??

    Hi Gurus! I wanna know if is there any view or something like that, where I can look for a sql sentence with error? The views V$SQL, V$SQLAREA, V$SQLTEXT doesn't work for that because they have de last rigth sql sentences and I need the last with err