Tagged Questions
3
votes
3answers
135 views
Dynamically change of UI on value changes in list box
I have a list box with several elements, let it be web servers (tomcat, iis etc). For each list box value, UI must have different views. For example, if we choose IIS, user name and password fields ...
-2
votes
0answers
57 views
Dynamic item menu in java GUI [closed]
Say..I want to build an application which you can see a list of products you can add product and you can delete a product.
It should be displayed like with the items name and a delete or edit button
...
0
votes
1answer
153 views
Are there any advantages to using Eclipse RCP for a new project? [closed]
Given the advancements in rich client side HTML5 applications (apart from developer familiarity) are there good reasons to start a new application using Eclipse RCP as opposed to something like ...
-1
votes
1answer
247 views
Which Web or UI technology to learn for experienced Java developer [closed]
I have been working on Core Java for around 4-5 years now, but have no exposure of working on any Web or UI technology. So want to have preliminary knowledge of some Web/UI technologies now.
My query ...
2
votes
2answers
184 views
Free tool to design Java user interfaces [closed]
While in the process of developing GUIs for my Java project, I am wondering if there is something that lets you visually design your GUI for Java and correspondently generates the needed code, just to ...
5
votes
2answers
238 views
What parts of Java do I need to learn for specific software projects?
I'm starting a 12 week Java course next month through my local junior college. I'm starting from square 1. I have a basic understanding of OO and Java will be my first OO language. My Google-Fu ...
7
votes
3answers
1k views
How could I make automatic tests for GUI?
How can I check automatically what is seen and what not? Or at least, how can I organize some partly automatic tests?
IDE: Eclipse (could use also IntelliJ Idea if necessary)
Testing tool: Junit ...
4
votes
3answers
893 views
Advantage of using Swing over AWT [closed]
Why is Swing preferred over AWT?
Which Swing component could be used for playing a video on it?
3
votes
2answers
455 views
Is there a canonical reference on GUI programming in Java?
I'm practicing Java in Netbeans.
Is there a reference out there that's the de-facto standard for describing best practices, design methodologies, and other helpful information on GUI programming in ...
2
votes
4answers
184 views
Java out of web and without GUI?
Is java used out of web and without GUI? To develop web applications you have to learn design stuff, html+css+javascript+ajax => it takes really a lot of time to learn it. Developing a GUI application ...
8
votes
2answers
1k views
When to use RCP?
I like to write small GUI applications using Java and Swing, something like a client for the social website Tumblr
Should I use Eclipse RCP or the Netbeans platform?
And what benefits do I get from ...
4
votes
3answers
268 views
Is there a tool to test Java UI?
Is there a tool to configure in a way that it locates buttons, clicks them, detects windows, reads text labels, determines if UI elements are checked/selected etc for Java? The tool need not be ...
2
votes
8answers
835 views
Should Swing knowledge be required from Java programmers? [closed]
Swing is an integral part of the Java API. It is also the most popular GUI framework for Java. I still wonder, should every Java programmer still know, or at least be pretty familiar with, Swing ...
6
votes
3answers
825 views
Design pattern for window management in a Java Swing app
I've just started creating my very first little Java Swing app. When the program opens, it brings up a single, simple window with a label and a couple buttons. Clicking one of those buttons is ...