org.itsnat.comp

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 » Ajax » ItsNat » org.itsnat.comp 
org.itsnat.comp
Contains generic interfaces of components, markup namespace independent, they may be applied to HTML components, SVG components, XML components etc.
Java Source File NameTypeComment
CreateItsNatComponentListener.javaInterface This listener type is used to add new user defined components to the framework.
ItsNatButton.javaInterface Is the base interface of button components.

A button component manages a javax.swing.ButtonModel, user actions updates this model accordingly.

ItsNatButtonCheckBox.javaInterface Is the base interface of check box button components.
ItsNatButtonGroup.javaInterface Represents a button group.
ItsNatButtonLabel.javaInterface Is the base interface of button components with a label.

The label is set calling ItsNatButtonLabel.setLabelValue(Object) .

ItsNatButtonNormal.javaInterface Is the base interface of normal button components.
ItsNatButtonRadio.javaInterface Is the base interface of radio button components.
ItsNatButtonToggle.javaInterface Is the base interface of toggle button components.
ItsNatComboBox.javaInterface Is the base interface of combo box components.
ItsNatComponent.javaInterface Is the base interface which every ItsNat component implements.

Some components have property change tracking like ItsNatLabel and org.itsnat.comp.html.ItsNatHTMLInputTextFormatted components.

ItsNatComponentManager.javaInterface Utility interface to manage (create, register etc) ItsNat components of the associated ItsNatDocument .
ItsNatElementComponent.javaInterface Is the base interface which every DOM Element based component implements.
ItsNatFormattedTextField.javaInterface Is the base interface of text based components which text is rendered/edited as a single line and following a format.
ItsNatFormatterFactoryDefault.javaInterface Defines a factory with several specialized formatters.
ItsNatInclude.javaInterface Is the base interface of "include" components.
ItsNatLabel.javaInterface Is the base interface of label components.

A label component contains a single object value, this value is rendered as markup using a special object, the renderer, and may be optionally edited "in place" using a user defined editor.

Any change to the internal value is notified with a "value" property change event and may be vetoed (see ItsNatLabel.setValue(Object) .

ItsNatLabelEditor.javaInterface Used to specify how a label value is edited in place.
ItsNatLabelRenderer.javaInterface Is used to render label values as markup into DOM elements.
ItsNatList.javaInterface Is the base interface of list based components.

A generic list component manages a javax.swing.ListModel data list, item values are rendered as markup using a special object, the renderer, and may be optionally edited "in place" using a user defined editor.

Any change to the data model is notified to the component and the markup is rendered again.

ItsNatListCellEditor.javaInterface Used to specify how a list item value is edited in place.
ItsNatListCellRenderer.javaInterface Is used to render list item values as markup into DOM elements.
ItsNatListMultSel.javaInterface Is the base interface of multiple selection lists.

This component family uses a javax.swing.ListSelectionModel to keep track of selection states.

ItsNatListStructure.javaInterface Used by list components to obtain the content parent element of a child element of the list.
ItsNatPasswordField.javaInterface Is the base interface of text field components containing a password.
ItsNatTable.javaInterface Is the base interface of table based components.

A table component manages a javax.swing.table.TableModel data model, table cell values are rendered as markup using a special object, the renderer, and may be optionally edited "in place" using a user defined editor.

Any change to the data model is notified to the component and the markup is rendered again.

ItsNatTableCellEditor.javaInterface Used to specify how a table cell value is edited in place.
ItsNatTableCellRenderer.javaInterface Is used to render table cell values as markup into DOM elements.
ItsNatTableHeader.javaInterface Is the base interface of table header components.

A table header component depends on a table component and is created automatically by the table whether the table markup has a header (for instance a <thead>).

A header component is not very different to a list but column values (header data model) are managed by the javax.swing.table.TableModel data model of the parent table (see DefaultTableModel.addColumn(Object)).

Any change to the header data model is notified to the component and the markup is rendered again.

ItsNatTableHeaderCellRenderer.javaInterface Is used to render column values of table headers as markup into DOM elements.
ItsNatTableStructure.javaInterface Used by table components to locate the required elements of the table layout.
ItsNatTextArea.javaInterface Is the base interface of text based components which text is rendered/edited with multiple lines.
ItsNatTextComponent.javaInterface Is the base interface of text based components.
ItsNatTextField.javaInterface Is the base interface of text based components which text is rendered/edited as a single line.
ItsNatTree.javaInterface Is the base interface of tree based components.

A tree component manages a javax.swing.tree.TreeModel data model, tree node values are rendered as markup using a special object, the renderer, and may be optionally edited "in place" using a user defined editor.

Any change to the data model is notified to the component and the markup is rendered again.

ItsNatTreeCellEditor.javaInterface Used to specify how a tree node value is edited in place.
ItsNatTreeCellRenderer.javaInterface Is used to render tree node values as markup into DOM elements.
ItsNatTreeStructure.javaInterface Used by tree components to locate the required elements of the table layout.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.