Package net.infonode.properties.types
Class InsetsProperty
- java.lang.Object
-
- net.infonode.properties.util.AbstractProperty
-
- net.infonode.properties.util.ValueHandlerProperty
-
- net.infonode.properties.types.InsetsProperty
-
- All Implemented Interfaces:
Property
public class InsetsProperty extends ValueHandlerProperty
A property of typeInsets
.
-
-
Constructor Summary
Constructors Constructor Description InsetsProperty(PropertyGroup group, java.lang.String name, java.lang.String description, PropertyValueHandler valueStorage)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.awt.Insets
get(java.lang.Object valueContainer)
Returns the insets value of this property in a value container.void
set(java.lang.Object valueContainer, java.awt.Insets insets)
Sets the insets value of this property in a value container.-
Methods inherited from class net.infonode.properties.util.ValueHandlerProperty
getValue, removeValue, setValue, valueIsRemovable, valueIsSet
-
Methods inherited from class net.infonode.properties.util.AbstractProperty
canBeAssiged, getDescription, getGroup, getName, getType, isMutable, toString
-
-
-
-
Constructor Detail
-
InsetsProperty
public InsetsProperty(PropertyGroup group, java.lang.String name, java.lang.String description, PropertyValueHandler valueStorage)
-
-
Method Detail
-
get
public java.awt.Insets get(java.lang.Object valueContainer)
Returns the insets value of this property in a value container.- Parameters:
valueContainer
- the value container- Returns:
- the insets value of this property
-
set
public void set(java.lang.Object valueContainer, java.awt.Insets insets)
Sets the insets value of this property in a value container.- Parameters:
valueContainer
- the value containerinsets
- the insets value
-
-