Uses of Class
org.revapi.Reference
-
Packages that use Reference Package Description org.revapi org.revapi.base -
-
Uses of Reference in org.revapi
Methods in org.revapi that return types with arguments of type Reference Modifier and Type Method Description default Set<Reference<E>>
Element. getCumulativeReferencedElements()
This returns thereferenced elements
of this element and of all its children, recursively.default Set<Reference<E>>
Element. getCumulativeReferencingElements()
This returns thereferencing elements
of this element and of all its children, recursively.default Set<Reference<E>>
Element. getReferencedElements()
If the API analyzer supports the feature, this returns the set of elements that are referenced by this element in some way (typically, those would be the elements somehow used by this element).default Set<Reference<E>>
Element. getReferencingElements()
If the API analyzer supports the feature, this returns the set of elements that reference this element in some way (typically, those would be the use sites of this element). -
Uses of Reference in org.revapi.base
Methods in org.revapi.base that return Reference Modifier and Type Method Description protected Reference<E>
BaseElement. newReference(E target, Reference.Type<E> type)
Creates a new reference instance to be used in theBaseElement.getReferencedElements()
orBaseElement.getReferencingElements()
.Methods in org.revapi.base that return types with arguments of type Reference Modifier and Type Method Description Set<Reference<E>>
BaseElement. getReferencedElements()
Set<Reference<E>>
BaseElement. getReferencingElements()
-