Interface IComponentParam
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IBaseParam
,IObjectLockingSupport
- All Known Subinterfaces:
IComponentParam2
,IComponentParam3
public interface IComponentParam extends IBaseParam
Services for managing Business Process Test parameters.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
component()
The Component containing the parameter.int
isOut()
Indicates if this is an output parameter.void
isOut(int pVal)
Indicates if this is an output parameter.-
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.IBaseParam
desc, desc, name, name, order, order, value, value, valueType, valueType
-
Methods inherited from interface step.repository.alm.v16.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
component
com4j.Com4jObject component()
The Component containing the parameter.
Getter method for the COM property "Component"
- Returns:
- Returns a value of type com4j.Com4jObject
-
isOut
int isOut()
Indicates if this is an output parameter. 1 indicates an output parameter. Any other value indicates an input parameter.
Getter method for the COM property "IsOut"
- Returns:
- Returns a value of type int
-
isOut
void isOut(int pVal)
Indicates if this is an output parameter. 1 indicates an output parameter. Any other value indicates an input parameter.
Setter method for the COM property "IsOut"
- Parameters:
pVal
- Mandatory int parameter.
-
-