Package org.robwork.sdurw_core
Class PropertyValue_i
- java.lang.Object
-
- org.robwork.sdurw_core.PropertyValueBase
-
- org.robwork.sdurw_core.PropertyValue_i
-
public class PropertyValue_i extends PropertyValueBase
PropertyValue class
The PropertyValue class is a template to support property values of any
type.
-
-
Constructor Summary
Constructors Constructor Description PropertyValue_i(int value)
Constructs PropertyValue.
Constructs a PropertyValue and tries to auto detect the type.
PropertyValue_i(long cPtr, boolean cMemoryOwn)
PropertyValue_i(PropertyType type, int value)
Constructs PropertyValue.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PropertyValueBase
clone()
Construct a clone of the property value.
void
delete()
static long
getCPtr(PropertyValue_i obj)
SWIGTYPE_p_int
getValue()
Returns a reference to the property value.
Note: Changing the value returned by reference will NOT fire the
changed event.void
setValue(int value)
Sets the property value.
This function will fire the changed event.
-
Methods inherited from class org.robwork.sdurw_core.PropertyValueBase
getCPtr, getType
-
-
-
-
Constructor Detail
-
PropertyValue_i
public PropertyValue_i(long cPtr, boolean cMemoryOwn)
-
PropertyValue_i
public PropertyValue_i(int value)
Constructs PropertyValue.
Constructs a PropertyValue and tries to auto detect the type.
- Parameters:
value
- [in] value
-
PropertyValue_i
public PropertyValue_i(PropertyType type, int value)
Constructs PropertyValue.- Parameters:
type
- [in] type of propertyvalue
- [in] value
-
-
Method Detail
-
getCPtr
public static long getCPtr(PropertyValue_i obj)
-
delete
public void delete()
- Overrides:
delete
in classPropertyValueBase
-
getValue
public SWIGTYPE_p_int getValue()
Returns a reference to the property value.
Note: Changing the value returned by reference will NOT fire the
changed event. Please consider using the setValue function if
possible, or fire the event manually on change, by calling
changedEvent().fire()
- Returns:
- reference to the property value.
-
setValue
public void setValue(int value)
Sets the property value.
This function will fire the changed event.
- Parameters:
value
- [in] the new value of the Property
-
clone
public PropertyValueBase clone()
Description copied from class:PropertyValueBase
Construct a clone of the property value.
- Overrides:
clone
in classPropertyValueBase
- Returns:
- a clone.
-
-