trait PointsToSetLike[ElementType, PointsToSet, T <: PointsToSetLike[ElementType, PointsToSet, T]] extends Property
A base class for points-to sets to be used as a FPCF property within analyses.
- Self Type
- T
- Source
- PointsToSetLike.scala
- See also
org.opalj.br.fpcf.properties.pointsto.AllocationSitePointsToSet and org.opalj.br.fpcf.properties.pointsto.TypeBasedPointsToSet for concrete subclasses.
- Alphabetic
- By Inheritance
- PointsToSetLike
- Property
- PropertyMetaInformation
- PropertyKind
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- abstract type Self <: Property
- Definition Classes
- PropertyMetaInformation
Abstract Value Members
- abstract def elements: PointsToSet
- abstract def filter(typeFilter: (ReferenceType) => Boolean): T
- abstract def forNewestNElements[U](n: Int)(f: (ElementType) => U): Unit
- abstract def forNewestNTypes[U](n: Int)(f: (ReferenceType) => U): Unit
- abstract def getNewestElement(): ElementType
- abstract def included(other: T, seenElements: Int, typeFilter: (ReferenceType) => Boolean): T
- abstract def included(other: T, typeFilter: (ReferenceType) => Boolean): T
- abstract def included(other: T, seenElements: Int): T
- abstract def included(other: T): T
- abstract def key: PropertyKey[T.Self]
The key uniquely identifies this property's category.
The key uniquely identifies this property's category. All property objects of the same kind have to use the same key.
In general each
Property
kind is expected to have a companion object that stores the uniquePropertyKey
.- Definition Classes
- PropertyMetaInformation
- abstract def numElements: Int
- abstract def numTypes: Int
- abstract def types: Set[ReferenceType]
Concrete Value Members
- final def asOrderedProperty: OrderedProperty
Returns
this
if this property inherits from OrderedProperty.Returns
this
if this property inherits from OrderedProperty.Used, e.g., by the framework to support debugging analyses.
- Definition Classes
- Property
- final def id: Int
The id uniquely identifies this property's category.
The id uniquely identifies this property's category. All property objects of the same kind have to use the same id which is guaranteed since they share the same
PropertyKey
- Definition Classes
- PropertyMetaInformation → PropertyKind
- final def isOrderedProperty: Boolean
Returns
true
if this property inherits from OrderedProperty.Returns
true
if this property inherits from OrderedProperty.- Definition Classes
- Property