Package jadex.platform.service.clock
Class ClockCreationInfo
- java.lang.Object
- 
- jadex.platform.service.clock.ClockCreationInfo
 
- 
 public class ClockCreationInfo extends java.lang.ObjectClock creation info.
- 
- 
Constructor SummaryConstructors Constructor Description ClockCreationInfo(java.lang.String clocktype, java.lang.String name)Create a new clock info.ClockCreationInfo(java.lang.String clocktype, java.lang.String name, long start, long delta)Create a new clock info.ClockCreationInfo(java.lang.String clocktype, java.lang.String name, long start, long delta, double dilation)Create a new clock info.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetClockType()Get the clocktype.longgetDelta()Get the delta.doublegetDilation()Get the dilation.java.lang.StringgetName()Get the name.longgetStart()Get the start.voidsetClockType(java.lang.String clocktype)Set the clocktype.voidsetDelta(long delta)Set the delta.voidsetDilation(double dilation)Set the dilation.voidsetName(java.lang.String name)Set the name.voidsetStart(long start)Set the start.
 
- 
- 
- 
Constructor Detail- 
ClockCreationInfopublic ClockCreationInfo(java.lang.String clocktype, java.lang.String name)Create a new clock info.
 - 
ClockCreationInfopublic ClockCreationInfo(java.lang.String clocktype, java.lang.String name, long start, long delta)Create a new clock info.
 - 
ClockCreationInfopublic ClockCreationInfo(java.lang.String clocktype, java.lang.String name, long start, long delta, double dilation)Create a new clock info.
 
- 
 - 
Method Detail- 
getClockTypepublic java.lang.String getClockType() Get the clocktype.- Returns:
- the clocktype.
 
 - 
setClockTypepublic void setClockType(java.lang.String clocktype) Set the clocktype.- Parameters:
- clocktype- The clocktype to set.
 
 - 
getNamepublic java.lang.String getName() Get the name.- Returns:
- the name.
 
 - 
setNamepublic void setName(java.lang.String name) Set the name.- Parameters:
- name- The name to set.
 
 - 
getStartpublic long getStart() Get the start.- Returns:
- the start.
 
 - 
setStartpublic void setStart(long start) Set the start.- Parameters:
- start- The start to set.
 
 - 
getDeltapublic long getDelta() Get the delta.- Returns:
- the delta.
 
 - 
setDeltapublic void setDelta(long delta) Set the delta.- Parameters:
- delta- The delta to set.
 
 - 
getDilationpublic double getDilation() Get the dilation.- Returns:
- the dilation.
 
 - 
setDilationpublic void setDilation(double dilation) Set the dilation.- Parameters:
- dilation- The dilation to set.
 
 
- 
 
-