Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Advanced GUI with Java Application

843806Aug 3 2009 — edited Aug 3 2009
Hi All,

I would like to build Java standalone Application with an advanced GUI.
I know of three options to build UI in Java: [SWT, Swing and AWT - article|http://www.ibm.com/developerworks/grid/library/os-swingswt/] .

Since this article was written 3 years ago. I was wondering if there is more advance method to develop java application with advanced UI.

Thanks for your help.

Comments

PhHein
Define more advanced.
843806
I'm looking for the following abilities:

Editable Grid
Paging
Grouping grid with collapsible data group
expender rows
Charts
drag & drop trees
drag & drop - grid to grid
lazy loading

Thanks for your help
User_64CKJ
PhHein wrote:
Define more advanced.
Waving the hands vaguely about in the air, muttering an incantation, then finishing with 'presto!'.
User_64CKJ
erez2000il wrote:
I'm looking for the following abilities:

Editable Grid
JTable?
Paging
The Scrollable interface.
Grouping grid with collapsible data group
expender rows
Huhh?
Charts
JFreeChart (probably too specialist to expect in J2SE).
drag & drop trees
drag & drop - grid to grid
AWT supports D'n'D. Whack that onto a JTree or JTable respectively, and it sounds like them.
lazy loading
Do you mean lazy construction of GUI components, or lazy loading or downloading of the classes?

The first is available depending on how you code it (as opposed to how you drag'n'drop it in Matisse).
The second is done automatically by the JVM, AFAIU.
The last is available by deploying using web-start.
1 - 4
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 31 2009
Added on Aug 3 2009
4 comments
164 views