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 SummaryAll 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.WebNodeappendChild, 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- 
getAttributeInfoWebAttribute 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)
 
 - 
setAttributeInfovoid setAttributeInfo(WebAttribute objectInfo) throws java.lang.IllegalArgumentException Sets the attribute which the shortcut refers to.- Parameters:
- objectInfo- A- WebAttributeobject 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()
 
 - 
getFormInfoWebAttributeForm 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)
 
 - 
setFormInfovoid setFormInfo(WebAttributeForm formInfo) throws java.lang.IllegalArgumentException Sets the attribute form which the shortcut refers to.- Parameters:
- formInfo- A- WebObjectInfoobject 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()
 
 
- 
 
-