Interface IStep
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IBaseFieldEx
,IObjectLockingSupport
- All Known Subinterfaces:
IStep2
public interface IStep extends IBaseFieldEx
Represents a test step in a test run.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
creationMode(short rhs)
For HP use.int
designStepSource()
The test ID of the test from which this step run originates.java.lang.String
name()
The run step name.void
name(java.lang.String pVal)
The run step name.java.lang.String
status()
The run step status.void
status(java.lang.String pVal)
The run step status.int
testSource()
The test ID of the test from which this step run originates.-
Methods inherited from interface com4j.Com4jObject
advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
-
Methods inherited from interface step.repository.alm.v16.otaclient.IBaseField
autoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
-
Methods inherited from interface step.repository.alm.v16.otaclient.IBaseFieldEx
attachments, hasAttachment, history
-
Methods inherited from interface step.repository.alm.v16.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
name
java.lang.String name()
The run step name.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
name
void name(java.lang.String pVal)
The run step name.
Setter method for the COM property "Name"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
status
java.lang.String status()
The run step status.
Getter method for the COM property "Status"
- Returns:
- Returns a value of type java.lang.String
-
status
void status(java.lang.String pVal)
The run step status.
Setter method for the COM property "Status"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
creationMode
void creationMode(short rhs)
For HP use. Sets the virtual run step creation mode.
Setter method for the COM property "CreationMode"
- Parameters:
rhs
- Mandatory short parameter.
-
testSource
int testSource()
The test ID of the test from which this step run originates.
Getter method for the COM property "TestSource"
- Returns:
- Returns a value of type int
-
designStepSource
int designStepSource()
The test ID of the test from which this step run originates.
Getter method for the COM property "DesignStepSource"
- Returns:
- Returns a value of type int
-
-