com.vaadin.data.util.
Class ObjectProperty<T>
java.lang.Object
com.vaadin.data.util.AbstractProperty
com.vaadin.data.util.ObjectProperty<T>
All Implemented Interfaces:
Property, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeNotifier, Serializable
- extends AbstractProperty
public class ObjectProperty<T>
A simple data object containing one typed value. This class is a
straightforward implementation of the the Property
interface.
Since:
3.0
Version:
6.8.18
Author:
Vaadin Ltd.
See Also:
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.vaadin.data.util.AbstractProperty |
---|
AbstractProperty.ReadOnlyStatusChangeEvent |
Nested classes/interfaces inherited from interface com.vaadin.data.Property |
---|
Property.ConversionException, Property.Editor, Property.ReadOnlyException, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer |
Constructor Summary | |
---|---|
ObjectProperty(Object value,
Class<T> type)
Creates a new instance of ObjectProperty with the given value and type. |
|
ObjectProperty(Object value,
Class<T> type,
boolean readOnly)
Creates a new instance of ObjectProperty with the given value, type and read-only mode status. |
|
ObjectProperty(T value)
Creates a new instance of ObjectProperty with the given value. |
Method Summary | |
---|---|
Class<T> |
getType()
Returns the type of the ObjectProperty. |
T |
getValue()
Gets the value stored in the Property. |
void |
setValue(Object newValue)
Sets the value of the property. |
Methods inherited from class com.vaadin.data.util.AbstractProperty |
---|
addListener, addListener, fireReadOnlyStatusChange, fireValueChange, getListeners, isReadOnly, removeListener, removeListener, setReadOnly, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
ObjectProperty
public ObjectProperty(T value)
- Parameters:
value
- the Initial value of the Property.
Creates a new instance of ObjectProperty with the given value. The type of the property is automatically initialized to be the type of the given value.
ObjectProperty
public ObjectProperty(Object value,
Class<T> type)
- Parameters:
value
- the Initial value of the Property.type
- the type of the value. The value must be assignable to given type.
Creates a new instance of ObjectProperty with the given value and type.
Any value of type Object is accepted because, if the type class contains
a string constructor, the toString of the value is used to create the new
value. See setValue(Object)
.
ObjectProperty
public ObjectProperty(Object value,
Class<T> type,
boolean readOnly)
- Parameters:
value
- the Initial value of the property.type
- the type of the value.value
must be assignable to this type.readOnly
- Sets the read-only mode.
Creates a new instance of ObjectProperty with the given value, type and
read-only mode status.
Any value of type Object is accepted, see
ObjectProperty(Object, Class)
.
Method Detail |
---|
getType
public final Class<T> getType()
- Returns:
- type of the Property
Returns the type of the ObjectProperty. The methods getValue
and setValue
must be compatible with this type: one must be
able to safely cast the value returned from getValue
to the
given type and pass any variable assignable to this type as an argument
to setValue
.
getValue
public T getValue()
- Returns:
- the value stored in the Property
Gets the value stored in the Property.
setValue
public void setValue(Object newValue)
throws Property.ReadOnlyException,
Property.ConversionException
- Parameters:
newValue
- the New value of the property.- Throws:
- if the object is in read-only modeProperty.ReadOnlyException
- if the newValue can't be converted into the Property's native type directly or throughProperty.ConversionException
String
Property.ReadOnlyException
- if the object is in read-only modeProperty.ConversionException
- if newValue can't be converted into the Property's native type directly or through String
Sets the value of the property. This method supports setting from
String
if either String
is directly assignable
to property type, or the type class contains a string constructor.