Package mks.ci.server.engine
Class EngineTestResult.ScriptTestResultsArgsBean
- java.lang.Object
-
- mks.frame.triggers.ScriptExposableBaseBean
-
- mks.frame.triggers.beans.ScriptBaseBean
-
- mks.ci.server.engine.LocalTriggerManager.ScriptIMBaseBean
-
- mks.ci.server.engine.EngineTestResult.ScriptTestResultsArgsBean
-
- All Implemented Interfaces:
mks.frame.triggers.ScriptExposableBean
- Enclosing class:
- EngineTestResult
public static class EngineTestResult.ScriptTestResultsArgsBean extends LocalTriggerManager.ScriptIMBaseBean implements mks.frame.triggers.ScriptExposableBean
A class that represents the arguments for test results. This class also contains the selection of test results that are being operated on.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getExposedName()
Returns the name of this bean that is exposed to the scripting language.LocalTriggerManager.ScriptTestResultBean[]
getTestResultBeans()
Returns all of the test results being operated on as an array of ScriptTestResultBean objects.boolean
isCreate()
Return true if these test results are being created.boolean
isDelete()
Return true if these test results are being deleted.boolean
isEdit()
Return true if these test results are being modified.-
Methods inherited from class mks.ci.server.engine.LocalTriggerManager.ScriptIMBaseBean
getCurrentDatabaseTime, getCurrentDatabaseTime, getCurrentUser, getServerBean, getUserID, isParallelProcessingEnabled
-
Methods inherited from class mks.frame.triggers.beans.ScriptBaseBean
getEnvironmentBean, setEnvironmentBean
-
-
-
-
Method Detail
-
getExposedName
public java.lang.String getExposedName()
Description copied from class:ScriptBaseBean
Returns the name of this bean that is exposed to the scripting language.- Specified by:
getExposedName
in interfacemks.frame.triggers.ScriptExposableBean
- Specified by:
getExposedName
in classScriptBaseBean
- Returns:
- the bean name:
siMemberBean
. - See Also:
ScriptBaseBean.getExposedName()
-
isCreate
public boolean isCreate()
Return true if these test results are being created.- Returns:
- true if these test results are being created, false otherwise.
-
isEdit
public boolean isEdit()
Return true if these test results are being modified.- Returns:
- true if these test results are being modified, false otherwise.
-
isDelete
public boolean isDelete()
Return true if these test results are being deleted.- Returns:
- true if these test results are being deleted, false otherwise.
-
getTestResultBeans
public LocalTriggerManager.ScriptTestResultBean[] getTestResultBeans()
Returns all of the test results being operated on as an array of ScriptTestResultBean objects. For create, edit, and set test result commands, a fully populated delta bean is returned.- Returns:
- An array of
ScriptTestResultBean
if the operation being performed represents a delete, or an array ofScriptTestResultDeltaBean
if the operation being performed represents a create, or an edit.
-
-