com.sun.rave.propertyeditors |
A library of general purpose property editors.
These editors are interfaces only, not instatiable classes
that provide actual editor functionality. They are intended to be used
only as arguments to
{@link java.beans.PropertyDescriptor#setPropertyEditorClass}. They are
substituted by the IDE for implementations that provide the actual funtionality,
using a service provider interface.
|
Java Source File Name | Type | Comment |
ConverterPropertyEditor.java | Interface | An editor for properties of type
javax.faces.convert.Converter . |
DateFormatPropertyEditor.java | Interface | A surrogate property editor for properties of type DateFormat. |
DatePropertyEditor.java | Interface | An editor for properties of type
java.util.Date . |
DomainPropertyEditor.java | Interface | A base property editor for properties whose range of legal values are represented
by an instance of
com.sun.rave.propertyeditors.domains.Domain . |
DoublePropertyEditor.java | Interface | An editor for properties of type double (the class or the primitive), or for
properties of type
java.lang.String that should represent a double. |
ImageUrlPropertyEditor.java | Interface | An editor for properties of type
java.lang.String that should represent
a URL to a graphic image in the user's project. |
IntegerPropertyEditor.java | Interface | An editor for properties of type integer (the class or the primitive), or for
properties of type
java.lang.String that should represent an integer. |
JavaScriptPropertyEditor.java | Interface | An editor for properties of type
java.lang.String that represent an
expression in the JavaScript language. |
LengthPropertyEditor.java | Interface | An editor for properties that represent a length, specified as an integer,
or as a numerical setting followed by pixel or percent designators. |
LongPropertyEditor.java | Interface | An editor for properties of type long (the class or the primitive), or for
properties of type
java.lang.String that should represent a long. |
MethodBindingPropertyEditor.java | Interface | An editor for properties of type
javax.faces.MethodBinding or
javax.el.MethodExpression . |
SelectOneDomainEditor.java | Interface | An editor for properties, the value of which must be selected from one of
a range of values. |
StringArrayPropertyEditor.java | Interface | An editor for properties that take arrays or lists of strings. |
StringPropertyEditor.java | Interface | An editor for properties of type
java.lang.String , or properties of
type
java.lang.Object that may accept strings. |
StyleClassPropertyEditor.java | Interface | An editor for properties of type
java.lang.String that represent references
to CSS style classes. |
UrlPropertyEditor.java | Interface | An editor for properties of type
java.net.URL , or properties of type
java.lang.String that should represent a URL. |
ValidatorPropertyEditor.java | Interface | An editor for properties of type
javax.faces.validate.Validator . |