Interface ILink
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IObjectLockingSupport
public interface ILink extends IBaseField
Represents an association between a Bug and another entity.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
comment()
The link summary comment.void
comment(java.lang.String pVal)
The link summary comment.java.lang.String
createdBy()
The user who created the link.void
createdBy(java.lang.String pVal)
The user who created the link.java.util.Date
creationDate()
The link creation date.void
creationDate(java.util.Date pVal)
The link creation date.com4j.Com4jObject
linkedByEntity()
The entity that initiated the link.java.lang.String
linkType()
The link type.void
linkType(java.lang.String pVal)
The link type.com4j.Com4jObject
sourceEntity()
The source entity object of the link.com4j.Com4jObject
targetEntity()
The target entity object of the link.void
targetEntity(com4j.Com4jObject pVal)
The target entity object of the link.-
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
-
sourceEntity
com4j.Com4jObject sourceEntity()
The source entity object of the link.
Getter method for the COM property "SourceEntity"
- Returns:
- Returns a value of type com4j.Com4jObject
-
targetEntity
com4j.Com4jObject targetEntity()
The target entity object of the link.
Getter method for the COM property "TargetEntity"
- Returns:
- Returns a value of type com4j.Com4jObject
-
targetEntity
void targetEntity(com4j.Com4jObject pVal)
The target entity object of the link.
Setter method for the COM property "TargetEntity"
- Parameters:
pVal
- Mandatory com4j.Com4jObject parameter.
-
linkedByEntity
com4j.Com4jObject linkedByEntity()
The entity that initiated the link.
Getter method for the COM property "LinkedByEntity"
- Returns:
- Returns a value of type com4j.Com4jObject
-
createdBy
java.lang.String createdBy()
The user who created the link.
Getter method for the COM property "CreatedBy"
- Returns:
- Returns a value of type java.lang.String
-
createdBy
void createdBy(java.lang.String pVal)
The user who created the link.
Setter method for the COM property "CreatedBy"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
creationDate
java.util.Date creationDate()
The link creation date.
Getter method for the COM property "CreationDate"
- Returns:
- Returns a value of type java.util.Date
-
creationDate
void creationDate(java.util.Date pVal)
The link creation date.
Setter method for the COM property "CreationDate"
- Parameters:
pVal
- Mandatory java.util.Date parameter.
-
linkType
java.lang.String linkType()
The link type.
Getter method for the COM property "LinkType"
- Returns:
- Returns a value of type java.lang.String
-
linkType
void linkType(java.lang.String pVal)
The link type.
Setter method for the COM property "LinkType"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
comment
java.lang.String comment()
The link summary comment.
Getter method for the COM property "Comment"
- Returns:
- Returns a value of type java.lang.String
-
comment
void comment(java.lang.String pVal)
The link summary comment.
Setter method for the COM property "Comment"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
-