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 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 java.lang.StringgetTime()Returns the time value, which will be the node value of a time node.voidsetTime(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.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
 - 
Methods inherited from interface com.microstrategy.web.objects.WebPromptSitegetPromptInstances
 - 
Methods inherited from interface com.microstrategy.web.objects.WebTimegetDynamicDay, 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.WebValueNodegetValue, setValue
 
- 
 
- 
- 
- 
Method Detail- 
getTimejava.lang.String getTime() Returns the time value, which will be the node value of a time node.- Specified by:
- getTimein interface- WebTime
- Returns:
- The text value of the time node.
- See Also:
- setTime(java.lang.String)
 
 - 
setTimevoid 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.
 
- 
 
-