Package com.microstrategy.web.objects
Interface WebResidueNode
-
- All Superinterfaces:
WebNode
public interface WebResidueNode extends WebNode
The WebResidueNode interface represents a shortcut node within an expression. This interface contains methods specific to a shortcut node. For methods which apply to all nodes, see theWebNode
interface, which this one extends.- Since:
- MicroStrategy Web 9.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebAttribute
getTarget()
Returns the object which the shortcut refers to.void
setTarget(WebAttribute objectInfo)
Sets the object which the shortcut refers to.-
Methods inherited from interface com.microstrategy.web.objects.WebNode
appendChild, clear, clearPlaceHolder, containsPrompts, createPlaceHolder, getCanExpand, getChild, getChildCount, getDataType, getDimensionality, getDimensionalityType, getDisplayName, getExpressionType, getFirstChild, getIsIndependentCSI, getIsSpliced, getKey, getLastChild, getNextSibling, getNodeType, getParent, getPlaceHolder, getPreviousSibling, getShortXML, getTag, getUCFlag, hasChildNodes, hasPlaceHolder, insertAfter, insertBefore, isCancelledPrompt, removeChild, replaceChild, setCanExpand, setDataType, setDimensionalityType, setDisplayName, setExpressionType, setIsIndependentCSI, setIsSpliced, setTag, setUCFlag
-
-
-
-
Method Detail
-
getTarget
WebAttribute getTarget()
Returns the object which the shortcut refers to.- Returns:
- A
WebObjectInfo
object which describes the object which the shortcut node refers to. - See Also:
setTarget(com.microstrategy.web.objects.WebAttribute)
-
setTarget
void setTarget(WebAttribute objectInfo) throws java.lang.IllegalArgumentException
Sets the object which the shortcut refers to.- Parameters:
objectInfo
- AWebObjectInfo
object which describes the object which the shortcut node will refer to.- Throws:
java.lang.IllegalArgumentException
- Thrown if the given target is null.- See Also:
getTarget()
-
-