Java Doc for TabularPropertyEditor.java in  » IDE-Netbeans » visualweb.api.designer » org » netbeans » modules » visualweb » propertyeditors » 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 » IDE Netbeans » visualweb.api.designer » org.netbeans.modules.visualweb.propertyeditors 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.netbeans.modules.visualweb.propertyeditors.PropertyEditorBase
   org.netbeans.modules.visualweb.propertyeditors.TabularPropertyEditor

All known Subclasses:   org.netbeans.modules.visualweb.propertyeditors.StringArrayPropertyEditor,  org.netbeans.modules.visualweb.web.ui.dt.component.propertyeditors.OptionsPropertyEditor,  org.netbeans.modules.visualweb.web.ui.dt.component.propertyeditors.SelectedValuesPropertyEditor,
TabularPropertyEditor
public class TabularPropertyEditor extends PropertyEditorBase (Code)
An editor for list-like or table-like properties. Any property that takes a list or array of objects that have a regular number of fields may be edited using this editor. Implementing classes must provide an implementation of the getRows() and setRows(List) methods, which are called to get and set the property's value as a list of lists (using java.util.List ). In addition, implementing classes must provide the column names and types to be used when representing the tabular data in a table widget. Editing is done through a custom pop-up component, but an in-line, read-only view of the values in the table's default column is also provided. The default column is the first, or whatever column index is returned by the method getDefaultDisplayColumnIndex().
See Also:   TabularPropertyPanel
See Also:   com.sun.rave.propertyeditors.TabularPropertyModel
author:
   gjmurphy


Field Summary
final public static  StringTABLE_MODEL_CLASS
     Key used to specify a table model within a property descriptor.

Constructor Summary
public  TabularPropertyEditor()
     Creates a new instance of TabularPropertyEditor.

Method Summary
public  StringgetAsText()
     Returns a string containing the comma-delimited values of the column, the index of which is returned by getTextDisplayColumnIndex().
public  ComponentgetCustomEditor()
     Returns this editor's custom editor panel, an instance of TabularPropertyPanel.
protected  TabularPropertyModelgetTabularPropertyModel()
     Return a table model suitable for displaying the value of this property as a table of columns and rows.
public  String[]getTags()
    
protected  intgetTextDisplayColumnIndex()
     Returns the index of the column to use as a default display when the editor is not displaying the full table of values.
public  ObjectgetValue()
    
public  booleanisEditableAsText()
    
public  voidsetAsText(String text)
    
public  voidsetValue(Object value)
    
public  booleansupportsCustomEditor()
    

Field Detail
TABLE_MODEL_CLASS
final public static String TABLE_MODEL_CLASS(Code)
Key used to specify a table model within a property descriptor.




Constructor Detail
TabularPropertyEditor
public TabularPropertyEditor()(Code)
Creates a new instance of TabularPropertyEditor.




Method Detail
getAsText
public String getAsText()(Code)
Returns a string containing the comma-delimited values of the column, the index of which is returned by getTextDisplayColumnIndex().



getCustomEditor
public Component getCustomEditor()(Code)
Returns this editor's custom editor panel, an instance of TabularPropertyPanel. To notify the panel of changes in the tabular property, call ((TabularPropertyPanel) this.getCustomEditor()).updateTableData().



getTabularPropertyModel
protected TabularPropertyModel getTabularPropertyModel()(Code)
Return a table model suitable for displaying the value of this property as a table of columns and rows. By default, looks for a table model class specified as the value of the property descriptor key TABLE_MODEL_CLASS.



getTags
public String[] getTags()(Code)



getTextDisplayColumnIndex
protected int getTextDisplayColumnIndex()(Code)
Returns the index of the column to use as a default display when the editor is not displaying the full table of values. By default, the first (0th) column is used.



getValue
public Object getValue()(Code)



isEditableAsText
public boolean isEditableAsText()(Code)



setAsText
public void setAsText(String text) throws IllegalArgumentException(Code)



setValue
public void setValue(Object value)(Code)



supportsCustomEditor
public boolean supportsCustomEditor()(Code)



Fields inherited from org.netbeans.modules.visualweb.propertyeditors.PropertyEditorBase
final protected static Bundle bundle(Code)(Java Doc)
DesignProperty designProperty(Code)(Java Doc)
PropertyEnv propertyEnv(Code)(Java Doc)
protected Object unsetValue(Code)(Java Doc)

Methods inherited from org.netbeans.modules.visualweb.propertyeditors.PropertyEditorBase
final public void attachEnv(PropertyEnv propertyEnv)(Code)(Java Doc)
public DesignProperty getDesignProperty()(Code)(Java Doc)
PropertyEnv getEnv()(Code)(Java Doc)
public String getJavaInitializationString()(Code)(Java Doc)
protected String getPropertyHelpId()(Code)(Java Doc)
public boolean isEditableAsText()(Code)(Java Doc)
public void setDesignProperty(DesignProperty designProperty)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.