Package net.infonode.properties.types
Class DirectionProperty
- java.lang.Object
-
- net.infonode.properties.util.AbstractProperty
-
- net.infonode.properties.util.ValueHandlerProperty
-
- net.infonode.properties.types.EnumProperty
-
- net.infonode.properties.types.DirectionProperty
-
- All Implemented Interfaces:
Property
public class DirectionProperty extends EnumProperty
A property of typeDirection
.
-
-
Constructor Summary
Constructors Constructor Description DirectionProperty(PropertyGroup group, java.lang.String name, java.lang.String description, PropertyValueHandler valueHandler)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Direction
get(java.lang.Object valueContainer)
Returns theDirection
value of this property in a value container.void
set(java.lang.Object valueContainer, Direction direction)
Sets theDirection
value of this property in a value container.-
Methods inherited from class net.infonode.properties.types.EnumProperty
getValidValues, getValue, setValue
-
Methods inherited from class net.infonode.properties.util.ValueHandlerProperty
removeValue, valueIsRemovable, valueIsSet
-
Methods inherited from class net.infonode.properties.util.AbstractProperty
canBeAssiged, getDescription, getGroup, getName, getType, isMutable, toString
-
-
-
-
Constructor Detail
-
DirectionProperty
public DirectionProperty(PropertyGroup group, java.lang.String name, java.lang.String description, PropertyValueHandler valueHandler)
Constructor.- Parameters:
group
- the property groupname
- the property namedescription
- the property descriptionvalueHandler
- handles values for this property
-
-