Interface IScript
-
- All Superinterfaces:
IAbstractType
,IScriptImmutable
- All Known Implementing Classes:
Script
public interface IScript extends IScriptImmutable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setDescription(java.lang.String description)
Set the description of the scriptvoid
setEntityForScript(java.lang.String entityKind)
Set the entity Type of the scriptvoid
setName(java.lang.String name)
Set the name of the scriptvoid
setScript(java.lang.String script)
Set the script contentvoid
setScriptType(java.lang.String scriptType)
Set the script type-
Methods inherited from interface ch.systemsx.cisd.openbis.generic.server.jython.api.v1.IAbstractType
getCode
-
Methods inherited from interface ch.systemsx.cisd.openbis.generic.server.jython.api.v1.IScriptImmutable
getDescription, getEntity, getName, getScript, getScriptType
-
-
-
-
Method Detail
-
setDescription
void setDescription(java.lang.String description)
Set the description of the script
-
setName
void setName(java.lang.String name)
Set the name of the script
-
setScript
void setScript(java.lang.String script)
Set the script content
-
setScriptType
void setScriptType(java.lang.String scriptType)
Set the script type
-
setEntityForScript
void setEntityForScript(java.lang.String entityKind)
Set the entity Type of the script
-
-