Interface ICoverageEntity
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
- All Known Subinterfaces:
ITestCoverage
public interface ICoverageEntity extends IBaseField
The association between a requirement and another entity that covers it.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
coverageType()
The type of coverage.java.lang.String
name()
The name of the TargetEntity.com4j.Com4jObject
requirementEntity()
The Req object being covered.java.lang.String
status()
The execution result status of the TargetEntity.com4j.Com4jObject
targetEntity()
The entity object that covers the requirement.-
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
-
requirementEntity
com4j.Com4jObject requirementEntity()
The Req object being covered.
Getter method for the COM property "RequirementEntity"
- Returns:
- Returns a value of type com4j.Com4jObject
-
targetEntity
com4j.Com4jObject targetEntity()
The entity object that covers the requirement.
Getter method for the COM property "TargetEntity"
- Returns:
- Returns a value of type com4j.Com4jObject
-
coverageType
java.lang.String coverageType()
The type of coverage. For example, Test or TSTest.
Getter method for the COM property "CoverageType"
- Returns:
- Returns a value of type java.lang.String
-
status
java.lang.String status()
The execution result status of the TargetEntity.
Getter method for the COM property "Status"
- Returns:
- Returns a value of type java.lang.String
-
name
java.lang.String name()
The name of the TargetEntity.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
-