Edited by WingedPanther, 22 August 2010 - 06:07 AM.
Delete spammy link
Java programming interface
Started by micheal9000, Aug 22 2010 03:25 AM
1 reply to this topic
#1
Posted 22 August 2010 - 03:25 AM
Please help me about Java interface ? I don't like to use swing, awt and swt. I want interface as swt, but the way to use as swing or awt ? Please tell me ?
|
|
|
#2
Posted 22 August 2010 - 08:43 AM
The architecture of Swing is designed so that you may change the "look and feel" (L&F) of your application's GUI (see A Swing Architecture Overview). "Look" refers to the appearance of GUI widgets (more formally, JComponents) and "feel" refers to the way the widgets behave.
Swing's architecture enables multiple L&Fs by separating every component into two distinct classes: a JComponent subclass and a corresponding ComponentUI subclass. For example, every JList instance has a concrete implementation of ListUI (ListUI extends ComponentUI). The ComponentUI subclass is referred to by various names in Swing's documentation—"the UI," "component UI," "UI delegate," and "look and feel delegate" are all used to identify the ComponentUI subclass.
How to Set the Look and Feel (The Java™ Tutorials > Creating a GUI With JFC/Swing > Modifying the Look and Feel)
Sample look and feels to choose
Napkin Look & Feel
Nimbus Look and Feel in Java SE 6 Update 10 Beta : Core Java Technologies Tech Tips
20+ Free Look and Feel Libraries for Java Swings | Java By E
Swing's architecture enables multiple L&Fs by separating every component into two distinct classes: a JComponent subclass and a corresponding ComponentUI subclass. For example, every JList instance has a concrete implementation of ListUI (ListUI extends ComponentUI). The ComponentUI subclass is referred to by various names in Swing's documentation—"the UI," "component UI," "UI delegate," and "look and feel delegate" are all used to identify the ComponentUI subclass.
How to Set the Look and Feel (The Java™ Tutorials > Creating a GUI With JFC/Swing > Modifying the Look and Feel)
Sample look and feels to choose
Napkin Look & Feel
Nimbus Look and Feel in Java SE 6 Update 10 Beta : Core Java Technologies Tech Tips
20+ Free Look and Feel Libraries for Java Swings | Java By E
Lost!


Sign In
Create Account

Back to top









