Package jadex.bridge.modelinfo
Class Startable
- java.lang.Object
-
- jadex.bridge.modelinfo.Startable
-
- Direct Known Subclasses:
ComponentInstanceInfo
,ConfigurationInfo
,ModelInfo
,SubcomponentTypeInfo
public class Startable extends java.lang.Object
Base class for startable elements.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.String
description
The description.
-
Constructor Summary
Constructors Constructor Description Startable()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
Get the model description.java.lang.Boolean
getKeepalive()
Get the keepalive.IMonitoringService.PublishEventLevel
getMonitoring()
Get the monitoring.java.lang.Boolean
getSuspend()
Get the suspend.java.lang.Boolean
getSynchronous()
Get the synchronous.void
setDescription(java.lang.String description)
Set the description.void
setKeepalive(java.lang.Boolean keepalive)
Set the keepalive.void
setMonitoring(IMonitoringService.PublishEventLevel monitoring)
Set the monitoring.void
setSuspend(java.lang.Boolean suspend)
Set the suspend.void
setSynchronous(java.lang.Boolean synchronous)
Set the synchronous.
-
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
Get the model description.- Returns:
- The model description.
-
setDescription
public void setDescription(java.lang.String description)
Set the description.- Parameters:
description
- The description to set.
-
getSuspend
public java.lang.Boolean getSuspend()
Get the suspend.- Returns:
- the suspend.
-
setSuspend
public void setSuspend(java.lang.Boolean suspend)
Set the suspend.- Parameters:
suspend
- The suspend to set.
-
getKeepalive
public java.lang.Boolean getKeepalive()
Get the keepalive.- Returns:
- the keepalive.
-
setKeepalive
public void setKeepalive(java.lang.Boolean keepalive)
Set the keepalive.- Parameters:
keepalive
- The keepalive to set.
-
getSynchronous
public java.lang.Boolean getSynchronous()
Get the synchronous.- Returns:
- The synchronous.
-
setSynchronous
public void setSynchronous(java.lang.Boolean synchronous)
Set the synchronous.- Parameters:
synchronous
- The synchronous to set.
-
getMonitoring
public IMonitoringService.PublishEventLevel getMonitoring()
Get the monitoring.- Returns:
- The monitoring.
-
setMonitoring
public void setMonitoring(IMonitoringService.PublishEventLevel monitoring)
Set the monitoring.- Parameters:
monitoring
- The monitoring to set.
-
-