Package org.palo.api

Examples of org.palo.api.Attribute


  private static final void updateAlias(AxisHierarchy hierarchy, XAlias xAlias) {
    Property<?> aliasProperty = hierarchy.getProperty(AxisHierarchy.USE_ALIAS);   
    if(xAlias != null) {
      //get the alias attribute:
      Attribute alias = hierarchy.getHierarchy().getAttribute(xAlias.getId());
      if(alias != null) {
        aliasProperty = new Property<Attribute>(AxisHierarchy.USE_ALIAS, alias);
        hierarchy.addProperty(aliasProperty);
      }     
    } else if(aliasProperty != null)
View Full Code Here

TOP

Related Classes of org.palo.api.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.