Package com.microstrategy.web.objects
Interface WebDirectedAttribute
- 
public interface WebDirectedAttributeAWebDirectedAttributeis an attribute with an additional direction property associated with it.- Since:
 - MicroStrategy Web 7.3.1 or earlier
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebAttributegetAttribute()Returns the attribute that this object refers to.intgetDirection()Returns the direction of the attribute.voidsetAttribute(WebAttribute attribute)Sets the attribute which this object refers to.voidsetDirection(int direction)Sets the direction of the attribute. 
 - 
 
- 
- 
Method Detail
- 
getAttribute
WebAttribute getAttribute()
Returns the attribute that this object refers to.- Returns:
 - A 
WebAttributeobject which is the target. - See Also:
 setAttribute(com.microstrategy.web.objects.WebAttribute)
 
- 
setAttribute
void setAttribute(WebAttribute attribute)
Sets the attribute which this object refers to.- Parameters:
 attribute- TheWebAttributeobject which is part of the directed attribute.- See Also:
 getAttribute()
 
- 
getDirection
int getDirection()
Returns the direction of the attribute.- Returns:
 - The direction of the attribute, from 
EnumDSSXMLAttributeDirection. - See Also:
 setDirection(int)
 
- 
setDirection
void setDirection(int direction)
Sets the direction of the attribute.- Parameters:
 direction- The desired direction of the attribute, fromEnumDSSXMLAttributeDirection.- See Also:
 getDirection()
 
 - 
 
 -