Interface IBPStepParam
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
public interface IBPStepParam extends IBaseField
A step parameter for a manual run of the business process test.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
name()
The name of this parameter.void
name(java.lang.String pVal)
The name of this parameter.int
referencedParamID()
The parameter ID of the referenced parameter.void
referencedParamID(int pVal)
The parameter ID of the referenced parameter.int
stepID()
The ID of the step in which this parameter occurs.int
type()
The parameter type.void
type(int pVal)
The parameter type.java.lang.String
value()
The value of this parameter.void
value(java.lang.String pVal)
The value of this 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.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
name
java.lang.String name()
The name of this parameter.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
name
void name(java.lang.String pVal)
The name of this parameter.
Setter method for the COM property "Name"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
value
java.lang.String value()
The value of this parameter.
Getter method for the COM property "Value"
- Returns:
- Returns a value of type java.lang.String
-
value
void value(java.lang.String pVal)
The value of this parameter.
Setter method for the COM property "Value"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
type
int type()
The parameter type.
Getter method for the COM property "Type"
- Returns:
- Returns a value of type int
-
type
void type(int pVal)
The parameter type.
Setter method for the COM property "Type"
- Parameters:
pVal
- Mandatory int parameter.
-
referencedParamID
int referencedParamID()
The parameter ID of the referenced parameter.
Getter method for the COM property "ReferencedParamID"
- Returns:
- Returns a value of type int
-
referencedParamID
void referencedParamID(int pVal)
The parameter ID of the referenced parameter.
Setter method for the COM property "ReferencedParamID"
- Parameters:
pVal
- Mandatory int parameter.
-
stepID
int stepID()
The ID of the step in which this parameter occurs.
Getter method for the COM property "StepID"
- Returns:
- Returns a value of type int
-
-