Package com.microstrategy.web.objects
Interface WebControlShortcutNode
-
- All Superinterfaces:
WebNode
- All Known Implementing Classes:
WebControlShortcutNodeImpl
public interface WebControlShortcutNode extends WebNode
The WebControlShortcutNode interface represents a control shortcut node within an expression. This interface contains methods specific to a control shortcut node. For methods which apply to all nodes, see theWebNode
interface, which this one extends.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getControlKey()
Return the controlKeyjava.lang.String
getNodeKey()
Return the nodeKeyvoid
setControlKey(java.lang.String controlKey)
Set the controlKeyvoid
setNodeKey(java.lang.String nodeKey)
Set the nodeKey-
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
-
getNodeKey
java.lang.String getNodeKey()
Return the nodeKey- Returns:
- {String} nodeKey
-
setNodeKey
void setNodeKey(java.lang.String nodeKey)
Set the nodeKey- Parameters:
nodeKey
-
-
getControlKey
java.lang.String getControlKey()
Return the controlKey- Returns:
- {String} controlKey
-
setControlKey
void setControlKey(java.lang.String controlKey)
Set the controlKey- Parameters:
controlKey
-
-
-