Package com.microstrategy.web.objects
Interface WebDirectedAttribute
-
public interface WebDirectedAttribute
AWebDirectedAttribute
is 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 WebAttribute
getAttribute()
Returns the attribute that this object refers to.int
getDirection()
Returns the direction of the attribute.void
setAttribute(WebAttribute attribute)
Sets the attribute which this object refers to.void
setDirection(int direction)
Sets the direction of the attribute.
-
-
-
Method Detail
-
getAttribute
WebAttribute getAttribute()
Returns the attribute that this object refers to.- Returns:
- A
WebAttribute
object 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
- TheWebAttribute
object 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()
-
-