Java Doc for Domain.java in  » IDE-Netbeans » visualweb.api.designer » com » sun » rave » propertyeditors » domains » 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 » com.sun.rave.propertyeditors.domains 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.rave.propertyeditors.domains.Domain

All known Subclasses:   com.sun.rave.propertyeditors.domains.LanguagesDomain,  org.netbeans.modules.visualweb.web.ui.dt.component.propertyeditors.AlertTypesDomain,  org.netbeans.modules.visualweb.web.ui.dt.component.propertyeditors.LabelLevelsDomain,  org.netbeans.modules.visualweb.faces.dt_1_2.component.html.HtmlCommandButtonTypesDomain,  com.sun.rave.propertyeditors.domains.LayoutDomain,  com.sun.rave.propertyeditors.domains.HtmlVerticalAlignDomain,  com.sun.rave.propertyeditors.domains.HtmlAlignDomain,  com.sun.rave.propertyeditors.domains.HtmlTableRulesDomain,  org.netbeans.modules.visualweb.web.ui.dt.component.propertyeditors.PageAlertTypesDomain,  org.netbeans.modules.visualweb.faces.dt_1_2.component.html.HtmlMessagesLayoutStylesDomain,  com.sun.rave.propertyeditors.domains.TextDirectionDomain,  org.netbeans.modules.visualweb.faces.dt_1_2.component.html.HtmlCheckboxLayoutStylesDomain,  org.netbeans.modules.visualweb.web.ui.dt.component.propertyeditors.SortFieldDomain,  com.sun.rave.propertyeditors.domains.TimeZonesDomain,  com.sun.rave.propertyeditors.domains.AttachedDomain,  org.netbeans.modules.visualweb.faces.dt.converter.DateTimeStylesDomain,  com.sun.rave.propertyeditors.domains.HtmlHorizontalAlignDomain,  com.sun.rave.propertyeditors.domains.LocalesDomain,  org.netbeans.modules.visualweb.faces.dt_1_1.component.html.HtmlCheckboxLayoutStylesDomain,  org.netbeans.modules.visualweb.faces.dt_1_1.component.html.HtmlCommandButtonTypesDomain,  org.netbeans.modules.visualweb.faces.dt.converter.DateTimeTypesDomain,  com.sun.rave.propertyeditors.domains.HtmlLinkTypesDomain,  com.sun.rave.propertyeditors.domains.HtmlTableBordersDomain,  org.netbeans.modules.visualweb.web.ui.dt.component.propertyeditors.FileTypesDomain,  com.sun.rave.propertyeditors.domains.HtmlRegionShapesDomain,
Domain
abstract public class Domain (Code)
Abstract representation of a set of binary tuples that represents the domain of values for a particular property. Domain elements are represented by instances of class Element . Concrete subclasses of this class may provide a static list of items, or calculate the list dynamically based on the current state of the associated components. If the number of elements in a domain is large, it is recommended that the elements be returned in sorted order, according to the natural ordering of the element labels.

A Domain implementation that needs access to the dynamic context should extend AttachedDomain instead of this class.

EditableDomain should be used to represent domains which users may modify by the addition or removal or modification of elements.

Nota Bena: No check is made for duplicate elements.



Field Summary
final static  Bundlebundle
     The localizing Bundle for this package.


Method Summary
public  StringgetDisplayName()
     Returns the display name of the element type that this domain represents. This name may be used in messages, labels, and window titles.
public  ElementgetElementAt(int index)
     Returns the element at the index indicated, or null if there is no element at the index indicated, or if the index is out of bounds.
abstract public  Element[]getElements()
     Returns an array of Element s that represent the legal values to which our associated property may be set.
public  intgetIndexOf(Element element)
     Returns the index of the element indicated, of -1 if the element does not exist in this domain.
public  StringgetPropertyHelpId()
     Returns the unique property help id that maps to the help topic for this property editor.
public  intgetSize()
     Returns the number of elements in the domain.
public  booleanisRequired()
     Returns true if this domain corresponds to a required property.

Field Detail
bundle
final static Bundle bundle(Code)
The localizing Bundle for this package. Classes in other packages that extend Domain must provide their own localization solution.





Method Detail
getDisplayName
public String getDisplayName()(Code)
Returns the display name of the element type that this domain represents. This name may be used in messages, labels, and window titles. By default, returns null. If null is returned, editors will generally use the property's display name.



getElementAt
public Element getElementAt(int index)(Code)
Returns the element at the index indicated, or null if there is no element at the index indicated, or if the index is out of bounds.



getElements
abstract public Element[] getElements()(Code)
Returns an array of Element s that represent the legal values to which our associated property may be set. If there are no such legal values, a zero-length array is returned. This method must never return null.

The returned Element s should be in the order most natural for presentation to a user in a property editor.




getIndexOf
public int getIndexOf(Element element)(Code)
Returns the index of the element indicated, of -1 if the element does not exist in this domain. If an element is present more than once, the index of the first one encountered is returned.



getPropertyHelpId
public String getPropertyHelpId()(Code)
Returns the unique property help id that maps to the help topic for this property editor. By default, returns null. Extending classes that provide help should override this method.



getSize
public int getSize()(Code)
Returns the number of elements in the domain.



isRequired
public boolean isRequired()(Code)
Returns true if this domain corresponds to a required property. A required property is one for which a "null" or "empty" value is not valid. If this method returns false, property editors must make a "null" or "unset" option available. By default, this method returns false.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(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.