Interface IParameterValue
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
public interface IParameterValue extends IBaseField
Represents a test parameter value entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
actualValue()
The value of the param.void
actualValue(java.lang.Object pVal)
The value of the param.java.lang.Object
defaultValue()
The default value of the parameter.java.lang.String
description()
The parameter description.boolean
isUsed()
Checks if the parameter is used.java.lang.String
name()
The parameter's name.com4j.Com4jObject
ownerEntity()
The owner entity.-
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 parameter's name.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
description
java.lang.String description()
The parameter description.
Getter method for the COM property "Description"
- Returns:
- Returns a value of type java.lang.String
-
ownerEntity
com4j.Com4jObject ownerEntity()
The owner entity.
Getter method for the COM property "OwnerEntity"
- Returns:
- Returns a value of type com4j.Com4jObject
-
defaultValue
java.lang.Object defaultValue()
The default value of the parameter.
Getter method for the COM property "DefaultValue"
- Returns:
- Returns a value of type java.lang.Object
-
actualValue
java.lang.Object actualValue()
The value of the param.
Getter method for the COM property "ActualValue"
- Returns:
- Returns a value of type java.lang.Object
-
actualValue
void actualValue(java.lang.Object pVal)
The value of the param.
Setter method for the COM property "ActualValue"
- Parameters:
pVal
- Mandatory java.lang.Object parameter.
-
isUsed
boolean isUsed()
Checks if the parameter is used.
Getter method for the COM property "IsUsed"
- Returns:
- Returns a value of type boolean
-
-