Source Code Cross Referenced for TreeTableModel.java in  » ERP-CRM-Financial » Personal-Finance-Manager » br » com » gfpshare » beans » table » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » ERP CRM Financial » Personal Finance Manager » br.com.gfpshare.beans.table 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:         * Copyright 1998-1999 Sun Microsystems, Inc. All Rights Reserved. Redistribution and use in source and binary
03:         * forms, with or without modification, are permitted provided that the following conditions are met: -
04:         * Redistributions of source code must retain the above copyright notice, this list of conditions and the
05:         * following disclaimer. - Redistribution in binary form must reproduce the above copyright notice, this list
06:         * of conditions and the following disclaimer in the documentation and/or other materials provided with the
07:         * distribution. Neither the name of Sun Microsystems, Inc. or the names of contributors may be used to
08:         * endorse or promote products derived from this software without specific prior written permission. This
09:         * software is provided "AS IS," without a warranty of any kind. ALL EXPRESS OR IMPLIED CONDITIONS,
10:         * REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
11:         * PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
12:         * OR LIABILITIES SUFFERED BY LICENSEE AS A RESULT OF OR RELATING TO USE, MODIFICATION OR DISTRIBUTION OF THIS
13:         * SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT
14:         * OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED
15:         * AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
16:         * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. You acknowledge that this software is not
17:         * designed, licensed or intended for use in the design, construction, operation or maintenance of any nuclear
18:         * facility.
19:         */
20:
21:        package br.com.gfpshare.beans.table;
22:
23:        import javax.swing.tree.TreeModel;
24:
25:        /**
26:         * TreeTableModel is the model used by a JTreeTable. It extends TreeModel to add methods for getting
27:         * information about the set of columns each node in the TreeTableModel may have. Each column, like a column
28:         * in a TableModel, has a name and a type associated with it. Each node in the TreeTableModel can return a
29:         * value for each of the columns and set that value if isCellEditable() returns true.
30:         * 
31:         * @author Philip Milne
32:         * @author Scott Violet
33:         */
34:        public interface TreeTableModel extends TreeModel {
35:            /**
36:             * Returns the number of available columns.
37:             * @return Nomero de colunas
38:             */
39:            public int getColumnCount();
40:
41:            /**
42:             * Returns the name for column number <code>column</code>.
43:             * 
44:             * @param column
45:             * @return Returns the name for column number <code>column</code>.
46:             */
47:            public String getColumnName(int column);
48:
49:            /**
50:             * Returns the type for column number <code>column</code>.
51:             * @param column Coluna
52:             * @return Class
53:             */
54:            public Class getColumnClass(int column);
55:
56:            /**
57:             * Returns the value to be displayed for node <code>node</code>, at column number <code>column</code>.
58:             * @param node No
59:             * @param column Coluna
60:             * @return Valor
61:             */
62:            public Object getValueAt(Object node, int column);
63:
64:            /**
65:             * Indicates whether the the value for node <code>node</code>, at column number <code>column</code>
66:             * is editable.
67:             * @param node Nó
68:             * @param column Coluna
69:             * @return Se for editavel True
70:             */
71:            public boolean isCellEditable(Object node, int column);
72:
73:            /**
74:             * Sets the value for node <code>node</code>, at column number <code>column</code>.
75:             * @param aValue Valor
76:             * @param node Nó
77:             * @param column Coluna
78:             */
79:            public void setValueAt(Object aValue, Object node, int column);
80:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.