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 int
getDuration()
int
getEstWorkingTime()
int
getWorkingTime()
void
writeXML(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.SAXException
Writes data as xml part.- Parameters:
hd
- Content handlerpartName
- Part name- Throws:
org.xml.sax.SAXException
- Exception
-
getDuration
public int getDuration()
- Specified by:
getDuration
in interfaceTimeInfo
- Returns:
- the duration
- See Also:
TimeInfo.getDuration()
-
getWorkingTime
public int getWorkingTime()
- Specified by:
getWorkingTime
in interfaceTimeInfo
- Returns:
- the workingTime
- See Also:
TimeInfo.getWorkingTime()
-
getEstWorkingTime
public int getEstWorkingTime()
- Specified by:
getEstWorkingTime
in interfaceTimeInfo
- Returns:
- the estWorkingTime
- See Also:
TimeInfo.getEstWorkingTime()
-
-