com.l2fprod.common.swing

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Swing Library » l2fprod common » com.l2fprod.common.swing 
com.l2fprod.common.swing
Java Source File NameTypeComment
BannerPanel.javaClass BannerPanel.
BaseDialog.javaClass An extension of the JDialog with built-in support for OK/CANCEL/CLOSE buttons.
ButtonAreaLayout.javaClass ButtonAreaLayout.
ComponentFactory.javaInterface
DefaultFontChooserModel.javaClass Default implementation of the FontChooserModel.
FontChooserModel.javaInterface Data model used by FontChooser.
GroupOfTaskPaneGroup.javaClass This class is used to create a multiple-exclusion scope for a set of JTaskPaneGroups.
HeaderlessColumnResizer.javaClass HeaderlessColumnResizer.
IconPool.javaClass
JButtonBar.javaClass
JButtonBarBeanInfo.javaClass BeanInfo class for JButtonBar.
JCollapsiblePane.javaClass JCollapsiblePane provides a component which can collapse or expand its content area with animation and fade in/fade out effects. It also acts as a standard container for other Swing components.

In this example, the JCollapsiblePane is used to build a Search pane which can be shown and hidden on demand.

 
 JCollapsiblePane cp = new JCollapsiblePane();
 // JCollapsiblePane can be used like any other container
 cp.setLayout(new BorderLayout());
 // the Controls panel with a textfield to filter the tree
 JPanel controls = new JPanel(new FlowLayout(FlowLayout.LEFT, 4, 0));
 controls.add(new JLabel("Search:"));
 controls.add(new JTextField(10));    
 controls.add(new JButton("Refresh"));
 controls.setBorder(new TitledBorder("Filters"));
 cp.add("Center", controls);
 JFrame frame = new JFrame();
 frame.setLayout(new BorderLayout());
 // Put the "Controls" first
 frame.add("North", cp);
 // Then the tree - we assume the Controls would somehow filter the tree
 JScrollPane scroll = new JScrollPane(new JTree());
 frame.add("Center", scroll);
 // Show/hide the "Controls"
 JButton toggle = new JButton(cp.getActionMap().get(JCollapsiblePane.TOGGLE_ACTION));
 toggle.setText("Show/Hide Search Panel");
 frame.add("South", toggle);
 frame.pack();
 frame.setVisible(true);
 
 

Note: JCollapsiblePane requires its parent container to have a java.awt.LayoutManager using JCollapsiblePane.getPreferredSize() when calculating its layout (example com.l2fprod.common.swing.PercentLayout , java.awt.BorderLayout ).

JCollapsiblePaneBeanInfo.javaClass BeanInfo class for JCollapsiblePane.
JDirectoryChooser.javaClass An extension of the JFileChooser but dedicated to directory selection.
JDirectoryChooserBeanInfo.javaClass BeanInfo class for JDirectoryChooser.
JFontChooser.javaClass JFontChooser provides a pane of controls designed to allow a user to manipulate and select a font.
JFontChooserBeanInfo.javaClass BeanInfo class for JFontChooser.
JLinkButton.javaClass A button targeted to be used as an hyperlink.
JLinkButtonBeanInfo.javaClass BeanInfo class for JLinkButton.
JOutlookBar.javaClass JOutlookBar brings the famous Outlook component to Swing.
JOutlookBarBeanInfo.javaClass BeanInfo class for JOutlookBar.
JTaskPane.javaClass JTaskPane provides an elegant view to display a list of tasks ordered by groups ( JTaskPane .

Although JTaskPaneGroup can be added to any other container, the JTaskPane will provide better fidelity when it comes to matching the look and feel of the host operating system than any other panel.

JTaskPaneBeanInfo.javaClass BeanInfo class for JTaskPane.
JTaskPaneGroup.javaClass JTaskPaneGroup is a container for tasks and other arbitrary components.

Several JTaskPaneGroups are usually grouped together within a JTaskPane .

JTaskPaneGroupBeanInfo.javaClass BeanInfo class for JTaskPaneGroup.
JTipOfTheDay.javaClass Provides the "Tip of The Day" pane and dialog.
Tips are retrieved from the com.l2fprod.common.swing.TipModel .
LookAndFeelTweaks.javaClass LookAndFeelTweaks.
MonospacedFontChooserModel.javaClass An extension of the com.l2fprod.common.swing.DefaultFontChooserModel showing only Monospaced fonts.
ObjectTableModel.javaInterface
PercentLayout.javaClass PercentLayout.
PercentLayoutAnimator.javaClass
StatusBar.javaClass StatusBar.
TipModel.javaInterface
UIUtilities.javaClass UIUtilities.
UserPreferences.javaClass UserPreferences.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.