Package com.saperion.wf
Class TimeInfoImpl
- java.lang.Object
-
- com.saperion.wf.WorkflowDataHolder
-
- com.saperion.wf.TimeInfoImpl
-
- All Implemented Interfaces:
TimeInfo,java.io.Serializable
public final class TimeInfoImpl extends WorkflowDataHolder implements TimeInfo
Time info class.- Author:
- rbo
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TimeInfoImpl(java.util.Map<java.lang.String,java.lang.Object> propertyMap, boolean isBC)Constructor from property map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDuration()intgetEstWorkingTime()intgetWorkingTime()voidwriteXML(org.xml.sax.ContentHandler hd, java.lang.String partName)Writes data as xml part.-
Methods inherited from class com.saperion.wf.WorkflowDataHolder
getDateValue, getIntValue, getStringValue
-
-
-
-
Method Detail
-
writeXML
public void writeXML(org.xml.sax.ContentHandler hd, java.lang.String partName) throws org.xml.sax.SAXExceptionWrites data as xml part.- Parameters:
hd- Content handlerpartName- Part name- Throws:
org.xml.sax.SAXException- Exception
-
getDuration
public int getDuration()
- Specified by:
getDurationin interfaceTimeInfo- Returns:
- the duration
- See Also:
TimeInfo.getDuration()
-
getWorkingTime
public int getWorkingTime()
- Specified by:
getWorkingTimein interfaceTimeInfo- Returns:
- the workingTime
- See Also:
TimeInfo.getWorkingTime()
-
getEstWorkingTime
public int getEstWorkingTime()
- Specified by:
getEstWorkingTimein interfaceTimeInfo- Returns:
- the estWorkingTime
- See Also:
TimeInfo.getEstWorkingTime()
-
-