public final TransformableProperty owner = new TransformableProperty( this, "owner", null );
public final StringProperty variableName = new StringProperty( this, "variableName", "" );
public final ClassProperty valueClass = new ClassProperty( this, "valueClass", null );
public final BooleanProperty ignoreCase = new BooleanProperty( this, "ignoreCase", Boolean.TRUE );
public Object getValue() {
Transformable ownerValue = owner.getTransformableValue();
String nameValue = variableName.getStringValue();
if( ownerValue != null ) {
for( int i=0; i<ownerValue.variables.size(); i++ ) {
Variable variableI = (Variable)ownerValue.variables.get( i );
if( variableI != null ) {