Package step.repository.alm.otaclient
Interface IBPIteration
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
public interface IBPIteration extends IBaseField
The design-time definition of a business component iteration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
addParam(com4j.Com4jObject pVal)
Add the specified BPParameter Object to the iteration.com4j.Com4jObject
bpComponent()
The BPComponent object of which this an iteration.void
deleteIterationParams()
Delete all the parameters from the iteration.void
deleteParam(com4j.Com4jObject pVal)
Delete the specified BPParameter from the iteration.IList
iterationParams()
The list of BPIterationParam objects associated with this iteration.java.lang.Object
iterationParams(int index)
int
order()
The 0-based execution position of this iteration in the set of iterations of this component.void
order(int pVal)
The 0-based execution position of this iteration in the set of iterations of this component.-
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.otaclient.IBaseField
autoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
-
Methods inherited from interface step.repository.alm.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
bpComponent
com4j.Com4jObject bpComponent()
The BPComponent object of which this an iteration.
Getter method for the COM property "BPComponent"
- Returns:
- Returns a value of type com4j.Com4jObject
-
iterationParams
IList iterationParams()
The list of BPIterationParam objects associated with this iteration.
Getter method for the COM property "IterationParams"
- Returns:
- Returns a value of type otaclient.IList
-
iterationParams
java.lang.Object iterationParams(int index)
-
addParam
com4j.Com4jObject addParam(com4j.Com4jObject pVal)
Add the specified BPParameter Object to the iteration.
- Parameters:
pVal
- Mandatory com4j.Com4jObject parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
deleteParam
void deleteParam(com4j.Com4jObject pVal)
Delete the specified BPParameter from the iteration.
- Parameters:
pVal
- Mandatory com4j.Com4jObject parameter.
-
deleteIterationParams
void deleteIterationParams()
Delete all the parameters from the iteration.
-
order
int order()
The 0-based execution position of this iteration in the set of iterations of this component.
Getter method for the COM property "Order"
- Returns:
- Returns a value of type int
-
order
void order(int pVal)
The 0-based execution position of this iteration in the set of iterations of this component.
Setter method for the COM property "Order"
- Parameters:
pVal
- Mandatory int parameter.
-
-