Interface IComponentStep
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
public interface IComponentStep extends IBaseField
Represents a step in a business process test.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
order()
The 1-based position of the step in the order of execution of the steps of the component.void
order(int pVal)
The 1-based position of the step in the order of execution of the steps of the component.com4j.Com4jObject
parent()
The parent Component.java.lang.String
stepDescription()
The description of the step.void
stepDescription(java.lang.String pVal)
The description of the step.java.lang.String
stepExpectedResult()
The expected result of the step.void
stepExpectedResult(java.lang.String pVal)
The expected result of the step.java.lang.String
stepName()
The component step name.void
stepName(java.lang.String pVal)
The component step name.void
validate()
Validate the step.-
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.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
stepDescription
java.lang.String stepDescription()
The description of the step.
Getter method for the COM property "StepDescription"
- Returns:
- Returns a value of type java.lang.String
-
stepDescription
void stepDescription(java.lang.String pVal)
The description of the step.
Setter method for the COM property "StepDescription"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
order
int order()
The 1-based position of the step in the order of execution of the steps of the component.
Getter method for the COM property "Order"
- Returns:
- Returns a value of type int
-
order
void order(int pVal)
The 1-based position of the step in the order of execution of the steps of the component.
Setter method for the COM property "Order"
- Parameters:
pVal
- Mandatory int parameter.
-
parent
com4j.Com4jObject parent()
The parent Component.
Getter method for the COM property "Parent"
- Returns:
- Returns a value of type com4j.Com4jObject
-
stepName
java.lang.String stepName()
The component step name.
Getter method for the COM property "StepName"
- Returns:
- Returns a value of type java.lang.String
-
stepName
void stepName(java.lang.String pVal)
The component step name.
Setter method for the COM property "StepName"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
stepExpectedResult
java.lang.String stepExpectedResult()
The expected result of the step.
Getter method for the COM property "StepExpectedResult"
- Returns:
- Returns a value of type java.lang.String
-
stepExpectedResult
void stepExpectedResult(java.lang.String pVal)
The expected result of the step.
Setter method for the COM property "StepExpectedResult"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
validate
void validate()
Validate the step.
-
-