Interface IComponentStep
- 
- All Superinterfaces:
- com4j.Com4jObject,- IBaseField,- IObjectLockingSupport
 
 public interface IComponentStep extends IBaseField Represents a step in a business process test.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description intorder()The 1-based position of the step in the order of execution of the steps of the component.voidorder(int pVal)The 1-based position of the step in the order of execution of the steps of the component.com4j.Com4jObjectparent()The parent Componentjava.lang.StringstepDescription()The description of the step.voidstepDescription(java.lang.String pVal)The description of the step.java.lang.StringstepExpectedResult()The expected result of the step.voidstepExpectedResult(java.lang.String pVal)The expected result of the step.java.lang.StringstepName()The component step name.voidstepName(java.lang.String pVal)The component step name.voidvalidate()Validate the step.- 
Methods inherited from interface com4j.Com4jObjectadvise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
 - 
Methods inherited from interface step.repository.alm.otaclient.IBaseFieldautoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
 - 
Methods inherited from interface step.repository.alm.otaclient.IObjectLockingSupportisLocked, lockObject, unLockObject
 
- 
 
- 
- 
- 
Method Detail- 
stepDescriptionjava.lang.String stepDescription() The description of the step. Getter method for the COM property "StepDescription" - Returns:
- Returns a value of type java.lang.String
 
 - 
stepDescriptionvoid stepDescription(java.lang.String pVal) The description of the step. Setter method for the COM property "StepDescription" - Parameters:
- pVal- Mandatory java.lang.String parameter.
 
 - 
orderint 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
 
 - 
ordervoid 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.
 
 - 
parentcom4j.Com4jObject parent() The parent Component Getter method for the COM property "Parent" - Returns:
- Returns a value of type com4j.Com4jObject
 
 - 
stepNamejava.lang.String stepName() The component step name. Getter method for the COM property "StepName" - Returns:
- Returns a value of type java.lang.String
 
 - 
stepNamevoid stepName(java.lang.String pVal) The component step name. Setter method for the COM property "StepName" - Parameters:
- pVal- Mandatory java.lang.String parameter.
 
 - 
stepExpectedResultjava.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
 
 - 
stepExpectedResultvoid 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.
 
 - 
validatevoid validate() Validate the step. 
 
- 
 
-