Package step.repository.alm.otaclient
Interface ITestParameter
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
public interface ITestParameter extends IBaseField
A parameter for a manual test.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
defaultValue()
The default value of the parameter.void
defaultValue(java.lang.Object pVal)
The default value of the parameter.java.lang.String
description()
The parameter description.void
description(java.lang.String pVal)
The parameter description.boolean
isUsed()
Checks if the test parameter is used.java.lang.String
name()
The parameter's name.void
name(java.lang.String pVal)
The parameter's name.com4j.Com4jObject
ownerTest()
The test that owns 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.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
-
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
-
name
void name(java.lang.String pVal)
The parameter's name.
Setter method for the COM property "Name"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
description
java.lang.String description()
The parameter description.
Getter method for the COM property "Description"
- Returns:
- Returns a value of type java.lang.String
-
description
void description(java.lang.String pVal)
The parameter description.
Setter method for the COM property "Description"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
ownerTest
com4j.Com4jObject ownerTest()
The test that owns this parameter.
Getter method for the COM property "OwnerTest"
- 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
-
defaultValue
void defaultValue(java.lang.Object pVal)
The default value of the parameter.
Setter method for the COM property "DefaultValue"
- Parameters:
pVal
- Mandatory java.lang.Object parameter.
-
isUsed
boolean isUsed()
Checks if the test parameter is used.
Getter method for the COM property "IsUsed"
- Returns:
- Returns a value of type boolean
-
-