Package heart.xtt

Examples of heart.xtt.Attribute


   * @throws NotInTheDomainException
   * @throws AttributeNotRegisteredException
   */
  public void setCurrentState(State state, XTTModel model, boolean autoregister) throws NotInTheDomainException, AttributeNotRegisteredException{
    for(StateElement se : state){
      Attribute attr = model.getAttributeByName(se.getAttributeName());
      setAttributeValue(attr, se.getValue(), autoregister);
    }
  }
View Full Code Here


   *
   * @param name a name of the attribute to register
   * @param model a model where the attribute is located
   */
  public void registerAttribute(String name, XTTModel model){
    Attribute attr = model.getAttributeByName(name);
    registerAttribute(attr);
  }
View Full Code Here

TOP

Related Classes of heart.xtt.Attribute

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.