Package com.microstrategy.web.objects
Interface WebFormShortcutNode
-
- All Superinterfaces:
WebNode
public interface WebFormShortcutNode extends WebNode
The WebFormShortcutNode interface represents an attribute form shortcut node within an expression. This interface contains methods specific to an attribute form shortcut node. For methods which apply to all nodes, see theWebNodeinterface, which this one extends.- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WebAttributegetAttributeInfo()Returns the attribute which the shortcut refers to.WebAttributeFormgetFormInfo()Returns the attribute form which the shortcut refers to.voidsetAttributeInfo(WebAttribute objectInfo)Sets the attribute which the shortcut refers to.voidsetFormInfo(WebAttributeForm formInfo)Sets the attribute form 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
-
getAttributeInfo
WebAttribute getAttributeInfo()
Returns the attribute which the shortcut refers to.- Returns:
- A
WebAttributeobject which describes the attribute which the shortcut node refers to. - See Also:
setAttributeInfo(com.microstrategy.web.objects.WebAttribute)
-
setAttributeInfo
void setAttributeInfo(WebAttribute objectInfo) throws java.lang.IllegalArgumentException
Sets the attribute which the shortcut refers to.- Parameters:
objectInfo- AWebAttributeobject which describes the attribute which the shortcut node will refer to.- Throws:
java.lang.IllegalArgumentException- Thrown if the given object is null.- See Also:
getAttributeInfo()
-
getFormInfo
WebAttributeForm getFormInfo()
Returns the attribute form which the shortcut refers to.- Returns:
- A
WebAttributeFormobject which describes the attribute form which the shortcut node refers to. - See Also:
setFormInfo(com.microstrategy.web.objects.WebAttributeForm)
-
setFormInfo
void setFormInfo(WebAttributeForm formInfo) throws java.lang.IllegalArgumentException
Sets the attribute form which the shortcut refers to.- Parameters:
formInfo- AWebObjectInfoobject which describes the attribute form which the shortcut node will refer to.- Throws:
java.lang.IllegalArgumentException- Thrown if the argument is null.- See Also:
getFormInfo()
-
-