Package com.uc4.api.objects
Class Cockpit
- java.lang.Object
-
- com.uc4.api.objects.UC4Object
-
- com.uc4.api.objects.Cockpit
-
- All Implemented Interfaces:
LifecycleSaveAware
public class Cockpit extends UC4Object implements LifecycleSaveAware
Represents the Cockpit object CPIT.
-
-
Constructor Summary
Constructors Constructor Description Cockpit()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterSaveObject()Called after an object is saved.CockpitDesigndesign()Returns the design of the Cockpit.java.lang.StringgetProcess()Returns the content of the "Process" tab.XHeaderheader()Returns the header data of this object.booleanisExecutable()Returnstrueif this Object can be executed.Runtimeruntime()Returns runtime information of this job.voidsetProcess(java.lang.String script)Sets the content of the "Process" tab.SyncListsyncs()Returns aSyncListobject which contains sync conditions of this object.ObjectValuesvalues()-
Methods inherited from class com.uc4.api.objects.UC4Object
docu, getAccess, getIdnr, getModCount, getName, getObjectClient, getType, isOldVersion, load, store, validate
-
-
-
-
Method Detail
-
isExecutable
public boolean isExecutable()
Description copied from class:UC4ObjectReturnstrueif this Object can be executed.- Specified by:
isExecutablein classUC4Object- Returns:
- true if the Object can be executed, false if not.
-
header
public XHeader header()
Returns the header data of this object. This is the information of the header tab in the dialog client.- Returns:
- header
-
syncs
public SyncList syncs()
Returns aSyncListobject which contains sync conditions of this object.- Returns:
- sync conditions
-
design
public CockpitDesign design()
Returns the design of the Cockpit.- Returns:
- design
-
runtime
public Runtime runtime()
Returns runtime information of this job. This corresponds to the "Runtime" tab in the dialog client.- Returns:
- Runtime information
-
values
public ObjectValues values()
- Returns:
- Variables of this object
-
getProcess
public java.lang.String getProcess()
Returns the content of the "Process" tab.- Returns:
- JCL
-
setProcess
public void setProcess(java.lang.String script)
Sets the content of the "Process" tab.- Parameters:
script- Script
-
afterSaveObject
public void afterSaveObject()
Description copied from interface:LifecycleSaveAwareCalled after an object is saved.- Specified by:
afterSaveObjectin interfaceLifecycleSaveAware
-
-