Class CFAbstractValue.ValueLub
- java.lang.Object
-
- org.checkerframework.framework.flow.CFAbstractValue.AnnotationSetCombiner
-
- org.checkerframework.framework.flow.CFAbstractValue.ValueLub
-
- Enclosing class:
- CFAbstractValue<V extends CFAbstractValue<V>>
protected class CFAbstractValue.ValueLub extends CFAbstractValue.AnnotationSetCombiner
Computes the least upper bound or, ifshouldWidenis true, an upper bounds of two sets of annotations. The computation accounts for sets that are missing annotations in hierarchies.
-
-
Constructor Summary
Constructors Constructor Description ValueLub(boolean shouldWiden)Creates aCFAbstractValue.ValueLub.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected @Nullable javax.lang.model.element.AnnotationMirrorcombineAnnotationWithTypeVar(javax.lang.model.element.AnnotationMirror annotation, AnnotatedTypeMirror.AnnotatedTypeVariable typeVar, javax.lang.model.element.AnnotationMirror top, boolean canCombinedSetBeMissingAnnos)Returns the result of combiningannotationwithtypeVar.protected @Nullable javax.lang.model.element.AnnotationMirrorcombineTwoAnnotations(javax.lang.model.element.AnnotationMirror a, javax.lang.model.type.TypeMirror aTypeMirror, javax.lang.model.element.AnnotationMirror b, javax.lang.model.type.TypeMirror bTypeMirror, javax.lang.model.element.AnnotationMirror top)Returns the result of combining the two annotations.protected @Nullable javax.lang.model.element.AnnotationMirrorcombineTwoTypeVars(AnnotatedTypeMirror.AnnotatedTypeVariable aAtv, AnnotatedTypeMirror.AnnotatedTypeVariable bAtv, javax.lang.model.element.AnnotationMirror top, boolean canCombinedSetBeMissingAnnos)Returns the primary annotation that result from of combining the twoAnnotatedTypeMirror.AnnotatedTypeVariable.-
Methods inherited from class org.checkerframework.framework.flow.CFAbstractValue.AnnotationSetCombiner
combineSets
-
-
-
-
Constructor Detail
-
ValueLub
public ValueLub(boolean shouldWiden)
Creates aCFAbstractValue.ValueLub.- Parameters:
shouldWiden- if true, this class computes an upper bound
-
-
Method Detail
-
combineTwoAnnotations
protected @Nullable javax.lang.model.element.AnnotationMirror combineTwoAnnotations(javax.lang.model.element.AnnotationMirror a, javax.lang.model.type.TypeMirror aTypeMirror, javax.lang.model.element.AnnotationMirror b, javax.lang.model.type.TypeMirror bTypeMirror, javax.lang.model.element.AnnotationMirror top)
Description copied from class:CFAbstractValue.AnnotationSetCombinerReturns the result of combining the two annotations. This method is called when an annotation exists in both sets for the hierarchy whose top istop.- Specified by:
combineTwoAnnotationsin classCFAbstractValue.AnnotationSetCombiner- Parameters:
a- an annotation in the hierarchyaTypeMirror- the type that is annotated byab- an annotation in the hierarchybTypeMirror- the type that is annotated bybtop- the top annotation in the hierarchy- Returns:
- the result of combining the two annotations or null if no combination exists
-
combineTwoTypeVars
protected @Nullable javax.lang.model.element.AnnotationMirror combineTwoTypeVars(AnnotatedTypeMirror.AnnotatedTypeVariable aAtv, AnnotatedTypeMirror.AnnotatedTypeVariable bAtv, javax.lang.model.element.AnnotationMirror top, boolean canCombinedSetBeMissingAnnos)
Description copied from class:CFAbstractValue.AnnotationSetCombinerReturns the primary annotation that result from of combining the twoAnnotatedTypeMirror.AnnotatedTypeVariable. If the result has no primary annotation,nullis returned. This method is called when no annotation exists in either sets for the hierarchy whose top istop.- Specified by:
combineTwoTypeVarsin classCFAbstractValue.AnnotationSetCombiner- Parameters:
aAtv- a type variable that does not have a primary annotation intophierarchybAtv- a type variable that does not have a primary annotation intophierarchytop- the top annotation in the hierarchycanCombinedSetBeMissingAnnos- whether or not- Returns:
- the result of combining the two type variables, which may be null
-
combineAnnotationWithTypeVar
protected @Nullable javax.lang.model.element.AnnotationMirror combineAnnotationWithTypeVar(javax.lang.model.element.AnnotationMirror annotation, AnnotatedTypeMirror.AnnotatedTypeVariable typeVar, javax.lang.model.element.AnnotationMirror top, boolean canCombinedSetBeMissingAnnos)
Description copied from class:CFAbstractValue.AnnotationSetCombinerReturns the result of combiningannotationwithtypeVar.This is called when an annotation exists for the hierarchy in one set, but not the other.
- Specified by:
combineAnnotationWithTypeVarin classCFAbstractValue.AnnotationSetCombiner- Parameters:
annotation- an annotationtypeVar- a type variable that does not have a primary annotation in the hierarchytop- the top annotation of the hierarchycanCombinedSetBeMissingAnnos- whether or not- Returns:
- the result of combining
annotationwithtypeVar
-
-