Interface ICondition
-
- All Superinterfaces:
com4j.Com4jObject
public interface ICondition extends com4j.Com4jObject
Represents a condition for a test to be executed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
description()
The Condition description.void
description(java.lang.String pVal)
The Condition description.java.lang.Object
id()
The Condition ID.java.lang.Object
source()
For a run condition, the source condition ID.java.lang.Object
sourceInstance()
For HP use.java.lang.Object
sourceTestId()
For HP use.java.lang.Object
target()
The target test instance number of the condition.java.lang.Object
targetInstance()
For HP use.java.lang.Object
targetTestId()
For HP use.short
type()
For HP use.java.lang.Object
value()
The Condition status value.void
value(java.lang.Object pVal)
The Condition status value.
-
-
-
Method Detail
-
value
java.lang.Object value()
The Condition status value.
Getter method for the COM property "Value"
- Returns:
- Returns a value of type java.lang.Object
-
value
void value(java.lang.Object pVal)
The Condition status value.
Setter method for the COM property "Value"
- Parameters:
pVal
- Mandatory java.lang.Object parameter.
-
type
short type()
For HP use. The condition type: TDCOND_RUN for a test run status, or any other value for a time condition.
Getter method for the COM property "Type"
- Returns:
- Returns a value of type short
-
source
java.lang.Object source()
For a run condition, the source condition ID. For a time condition, a date-time string.
Getter method for the COM property "Source"
- Returns:
- Returns a value of type java.lang.Object
-
target
java.lang.Object target()
The target test instance number of the condition.
Getter method for the COM property "Target"
- Returns:
- Returns a value of type java.lang.Object
-
description
java.lang.String description()
The Condition 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 Condition description.
Setter method for the COM property "Description"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
id
java.lang.Object id()
The Condition ID.
Getter method for the COM property "ID"
- Returns:
- Returns a value of type java.lang.Object
-
sourceInstance
java.lang.Object sourceInstance()
For HP use. For a run condition, the source test instance number of the condition.
Getter method for the COM property "SourceInstance"
- Returns:
- Returns a value of type java.lang.Object
-
targetInstance
java.lang.Object targetInstance()
For HP use. The target test instance number of the condition.
Getter method for the COM property "TargetInstance"
- Returns:
- Returns a value of type java.lang.Object
-
sourceTestId
java.lang.Object sourceTestId()
For HP use. The source test ID.
Getter method for the COM property "SourceTestId"
- Returns:
- Returns a value of type java.lang.Object
-
targetTestId
java.lang.Object targetTestId()
For HP use. The target test instance number of the condition.
Getter method for the COM property "TargetTestId"
- Returns:
- Returns a value of type java.lang.Object
-
-