O - the owner typepublic interface EFXObject<O extends EObject>
| Modifier and Type | Method and Description |
|---|---|
javafx.beans.property.BooleanProperty |
getBooleanProperty(EStructuralFeature feature)
Get a boolean property
|
javafx.beans.property.DoubleProperty |
getDoubleProperty(EStructuralFeature feature)
Get a double property
|
javafx.beans.property.FloatProperty |
getFloatProperty(EStructuralFeature feature)
Get a float property
|
javafx.beans.property.IntegerProperty |
getIntegerProperty(EStructuralFeature feature)
Get an integer property
|
javafx.beans.property.LongProperty |
getLongProperty(EStructuralFeature feature)
Get a long property
|
<T> javafx.beans.property.ObjectProperty<T> |
getObjectProperty(java.lang.Class<T> type,
EStructuralFeature feature)
Get an
ObjectProperty |
javafx.beans.property.StringProperty |
getStringProperty(EStructuralFeature feature)
Get a string property
|
<T> javafx.beans.property.ObjectProperty<T> getObjectProperty(java.lang.Class<T> type,
EStructuralFeature feature)
ObjectPropertytype - the typefeature - the featurejava.lang.IllegalArgumentException - if the feature describes a primitive value like int.class,
boolean.classjavafx.beans.property.IntegerProperty getIntegerProperty(EStructuralFeature feature)
feature - the featurejava.lang.IllegalArgumentException - if the feature does not describe an int.class typejavafx.beans.property.DoubleProperty getDoubleProperty(EStructuralFeature feature)
feature - the featurejava.lang.IllegalArgumentException - if the feature does not describe an double.class typejavafx.beans.property.StringProperty getStringProperty(EStructuralFeature feature)
feature - the featurejava.lang.IllegalArgumentException - if the feature does not describe an String.class typejavafx.beans.property.FloatProperty getFloatProperty(EStructuralFeature feature)
feature - the featurejava.lang.IllegalArgumentException - if the feature does not describe an float.class typejavafx.beans.property.BooleanProperty getBooleanProperty(EStructuralFeature feature)
feature - the featurejava.lang.IllegalArgumentException - if the feature does not describe an boolean.class typejavafx.beans.property.LongProperty getLongProperty(EStructuralFeature feature)
feature - the featurejava.lang.IllegalArgumentException - if the feature does not describe an long.class type