Suspected Reference Functions
Function
Signature
Meaning
Availability
hasSuspectedLink
boolean hasSuspectedLink(TrackerItemDto)
Returns true if the given tracker item has suspected links.
Codebeamer 9.4.0 and newer
hasUpstreamSuspectedLink
boolean hasUpstreamSuspectedLink(TrackerItemDto)
Returns true if the given tracker item has upstream suspected links.
Codebeamer 9.4.0 and newer
hasDownstreamSuspectedLink
boolean hasDownstreamSuspectedLink(TrackerItemDto)
Returns true if the given tracker item has downstream suspected links.
Codebeamer 9.4.0 and newer
Example: check if the tracker item does not have suspected links:
!hasSuspectedLink(this)
Example: check if the tracker item has upstream suspected links and does not have downstream suspected links:
hasUpstreamSuspectedLink(this) and !hasDownstreamSuspectedLink(this)
Was this helpful?