Package com.microstrategy.web.objects
Interface WebTimeNode
-
- All Superinterfaces:
WebNode
,WebPromptableNode
,WebPromptSite
,WebTime
,WebValueNode
public interface WebTimeNode extends WebValueNode, WebTime
The WebTimeNode interface represents a time node within aWebExpression
. This interface contains methods specific to a time node. For methods which apply to all nodes, see theWebNode
interface, 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 java.lang.String
getTime()
Returns the time value, which will be the node value of a time node.void
setTime(java.lang.String time)
Sets the time value, which will be the node value of a time node.-
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
-
Methods inherited from interface com.microstrategy.web.objects.WebPromptSite
getPromptInstances
-
Methods inherited from interface com.microstrategy.web.objects.WebTime
getDynamicDay, getDynamicDayOffset, getDynamicDayOfWeek, getDynamicHour, getDynamicMinute, getDynamicMonth, getDynamicMonthOffset, getDynamicSecond, getDynamicTimeType, getDynamicWeek, getDynamicYear, getText, isDynamicDate, setDynamicDay, setDynamicDayOffset, setDynamicDayOfWeek, setDynamicHour, setDynamicMinute, setDynamicMonth, setDynamicMonthOffset, setDynamicSecond, setDynamicTimeType, setDynamicWeek, setDynamicYear
-
Methods inherited from interface com.microstrategy.web.objects.WebValueNode
getValue, setValue
-
-
-
-
Method Detail
-
getTime
java.lang.String getTime()
Returns the time value, which will be the node value of a time node.- Specified by:
getTime
in interfaceWebTime
- Returns:
- The text value of the time node.
- See Also:
setTime(java.lang.String)
-
setTime
void setTime(java.lang.String time)
Sets the time value, which will be the node value of a time node. This will not be validated until the expression is sent to the Intelligence Server.
-
-