Interface ILinkable
-
- All Superinterfaces:
com4j.Com4jObject
public interface ILinkable extends com4j.Com4jObject
Services for managing links.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com4j.Com4jObject
bugLinkFactory()
The bug link factory that manages the links of the current object to its associated defects.boolean
hasLinkage()
Checks if the current object has at least one associated Bug.boolean
hasOthersLinkage()
Checks if the current Bug object has at least one associated object that is not another Bug object.com4j.Com4jObject
linkFactory()
The link factory of the current defect object that enables viewing the links.
-
-
-
Method Detail
-
bugLinkFactory
com4j.Com4jObject bugLinkFactory()
The bug link factory that manages the links of the current object to its associated defects.
Getter method for the COM property "BugLinkFactory"
- Returns:
- Returns a value of type com4j.Com4jObject
-
linkFactory
com4j.Com4jObject linkFactory()
The link factory of the current defect object that enables viewing the links. Defined only for Bug objects.
Getter method for the COM property "LinkFactory"
- Returns:
- Returns a value of type com4j.Com4jObject
-
hasLinkage
boolean hasLinkage()
Checks if the current object has at least one associated Bug.
Getter method for the COM property "HasLinkage"
- Returns:
- Returns a value of type boolean
-
hasOthersLinkage
boolean hasOthersLinkage()
Checks if the current Bug object has at least one associated object that is not another Bug object. Defined only for Bug objects.
Getter method for the COM property "HasOthersLinkage"
- Returns:
- Returns a value of type boolean
-
-