Package anvil.script

Examples of anvil.script.VariableType


  }


  public Any getAttribute(Context context, String attribute)
  {
    VariableType var = getVariable(attribute);
    if (var != null) {
      return var.getValue();
    }
    return UNDEFINED;
  }
View Full Code Here


  }
 
 
  public Any setAttribute(Context context, String attribute, Any value)
  {
    VariableType var = getVariable(attribute);
    if (var != null) {
      var.setValue(value);
    }
    return value;
  }
View Full Code Here

  }
   
 
  public Any checkAttribute(Context context, String attribute)
  {
    VariableType var = getVariable(attribute);
    if (var != null) {
      return var.getValue();
    }
    return UNDEFINED; 
  }
View Full Code Here

TOP

Related Classes of anvil.script.VariableType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.