Interface IBPIteration
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
- All Known Subinterfaces:
IBPIteration2
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)
Deprecated.com4j.Com4jObject
bpComponent()
The BPComponent object of which this an iteration.void
deleteIterationParams()
Deprecated.void
deleteParam(com4j.Com4jObject pVal)
Deprecated.IList
iterationParams()
Deprecated.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.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
-
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()
Deprecated. Use BPIterationParamFactory of IBPIteration2. The list of BPIterationParam objects associated with this iteration.
Getter method for the COM property "IterationParams"
- Returns:
- Returns a value of type step.repository.alm.v16.otaclient.IList
-
iterationParams
java.lang.Object iterationParams(int index)
-
addParam
com4j.Com4jObject addParam(com4j.Com4jObject pVal)
Deprecated. Use BPIterationParamFactory of IBPIteration2. 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)
Deprecated. Use BPIterationParamFactory of IBPIteration2. Delete the specified BPParameter from the iteration.
- Parameters:
pVal
- Mandatory com4j.Com4jObject parameter.
-
deleteIterationParams
void deleteIterationParams()
Deprecated. Use BPIterationParamFactory of IBPIteration2. 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.
-
-