Package jadex.platform.service.clock
Class ClockCreationInfo
- java.lang.Object
-
- jadex.platform.service.clock.ClockCreationInfo
-
public class ClockCreationInfo extends java.lang.Object
Clock creation info.
-
-
Constructor Summary
Constructors 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 Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getClockType()
Get the clocktype.long
getDelta()
Get the delta.double
getDilation()
Get the dilation.java.lang.String
getName()
Get the name.long
getStart()
Get the start.void
setClockType(java.lang.String clocktype)
Set the clocktype.void
setDelta(long delta)
Set the delta.void
setDilation(double dilation)
Set the dilation.void
setName(java.lang.String name)
Set the name.void
setStart(long start)
Set the start.
-
-
-
Constructor Detail
-
ClockCreationInfo
public ClockCreationInfo(java.lang.String clocktype, java.lang.String name)
Create a new clock info.
-
ClockCreationInfo
public ClockCreationInfo(java.lang.String clocktype, java.lang.String name, long start, long delta)
Create a new clock info.
-
ClockCreationInfo
public ClockCreationInfo(java.lang.String clocktype, java.lang.String name, long start, long delta, double dilation)
Create a new clock info.
-
-
Method Detail
-
getClockType
public java.lang.String getClockType()
Get the clocktype.- Returns:
- the clocktype.
-
setClockType
public void setClockType(java.lang.String clocktype)
Set the clocktype.- Parameters:
clocktype
- The clocktype to set.
-
getName
public java.lang.String getName()
Get the name.- Returns:
- the name.
-
setName
public void setName(java.lang.String name)
Set the name.- Parameters:
name
- The name to set.
-
getStart
public long getStart()
Get the start.- Returns:
- the start.
-
setStart
public void setStart(long start)
Set the start.- Parameters:
start
- The start to set.
-
getDelta
public long getDelta()
Get the delta.- Returns:
- the delta.
-
setDelta
public void setDelta(long delta)
Set the delta.- Parameters:
delta
- The delta to set.
-
getDilation
public double getDilation()
Get the dilation.- Returns:
- the dilation.
-
setDilation
public void setDilation(double dilation)
Set the dilation.- Parameters:
dilation
- The dilation to set.
-
-