Uses of Interface
org.palo.api.Attribute

Packages that use Attribute
org.palo.api   
org.palo.api.impl   
 

Uses of Attribute in org.palo.api
 

Methods in org.palo.api that return Attribute
 Attribute Hierarchy.addAttribute(java.lang.String name)
          Creates a new Attribute and adds it to the hierarchy.
 Attribute Dimension.addAttribute(java.lang.String name)
          Deprecated. use Hierarchy.addAttribute(String) instead.
 Attribute Subset.getAlias()
          Deprecated. Sets an optional alias for element name display of the subset.
 Attribute Hierarchy.getAttribute(java.lang.String id)
          Returns the Attribute which corresponds to the given id or null if no Attribute with this id exists
 Attribute Dimension.getAttribute(java.lang.String id)
          Deprecated. use Hierarchy.getAttribute(String) instead.
 Attribute Hierarchy.getAttributeByName(java.lang.String name)
          Returns the Attribute which corresponds to the given name or null if no Attribute with this name exists
 Attribute Dimension.getAttributeByName(java.lang.String name)
          Deprecated. use Hierarchy.getAttributeByName(String) instead.
 Attribute[] Hierarchy.getAttributes()
          Returns all Attributes this hierarchy has.
 Attribute[] Dimension.getAttributes()
          Deprecated. use Hierarchy.getAttributes() instead.
 Attribute[] ConnectionEvent.getAttributes()
          Returns the affected Attributes of the event if the event is applicable to attributes, otherwise null is returned.
 Attribute[] Attribute.getChildren()
          Returns the children of this attribute
 Attribute[] Attribute.getParents()
          Returns the parent attributes of this attribute
 Attribute SubsetState.getSearchAttribute()
          Deprecated. Returns an attribute field that is used for searching with the regular expression.
 

Methods in org.palo.api with parameters of type Attribute
 java.lang.Object Element.getAttributeValue(Attribute attribute)
          Returns the value of the specified Attribute
 java.lang.Object[] Hierarchy.getAttributeValues(Attribute[] attributes, Element[] elements)
          Convenient method to receive the values from several Attributes in one go, i.e. the i.th object in the returned array is the i.th value of the i.th attribute for the i.th element.
 java.lang.Object[] Dimension.getAttributeValues(Attribute[] attributes, Element[] elements)
          Deprecated. use Hierarchy.getAttributeValues(Attribute [], Element []) instead.
 void Hierarchy.removeAttribute(Attribute attribute)
          Removes the given Attribute from the hierarchy
 void Dimension.removeAttribute(Attribute attribute)
          Deprecated. use Hierarchy.removeAttribute(Attribute) instead.
 void Attribute.removeChildren(Attribute[] attributes)
          Convenient method to remove children attributes from this attribute
 void Subset.setAlias(Attribute alias)
          Deprecated. Gets the alias for element name display of the subset.
 void Element.setAttributeValue(Attribute attribute, java.lang.Object value)
          Sets the value for the given Attribute instance
 void Hierarchy.setAttributeValues(Attribute[] attributes, Element[] elements, java.lang.Object[] values)
          Convenient method to set the values for several Attributes at once, i.e. the i.th value is assigned to the i.th attribute for the i.th element.
 void Dimension.setAttributeValues(Attribute[] attributes, Element[] elements, java.lang.Object[] values)
          Deprecated. use Hierarchy.setAttributeValues(Attribute [], Element [], Object []) instead.
 void Element.setAttributeValues(Attribute[] attributes, java.lang.Object[] values)
          Sets the values for the given Attribute instances
 void Attribute.setChildren(Attribute[] attributes)
          Sets the children attributes of this attribute.
 void SubsetState.setSearchAttribute(Attribute searchAttribute)
          Deprecated. Sets the attribute field that is used instead of the element name when filtering with a regular expression
 

Uses of Attribute in org.palo.api.impl
 

Methods in org.palo.api.impl that return Attribute
 Attribute HierarchyImpl.addAttribute(java.lang.String name)
           
 Attribute HierarchyImpl.getAttribute(java.lang.String attrId)
           
 Attribute HierarchyImpl.getAttributeByName(java.lang.String attrName)
           
 Attribute[] HierarchyImpl.getAttributes()
           
 

Methods in org.palo.api.impl with parameters of type Attribute
 java.lang.Object[] HierarchyImpl.getAttributeValues(Attribute[] attributes, Element[] elements)
           
 void HierarchyImpl.removeAttribute(Attribute attribute)
           
 void HierarchyImpl.setAttributeValues(Attribute[] attributes, Element[] elements, java.lang.Object[] values)