Class WholeProgramInferenceJavaParserStorage.CallableDeclarationAnnos
java.lang.Object
org.checkerframework.common.wholeprograminference.WholeProgramInferenceJavaParserStorage.CallableDeclarationAnnos
- All Implemented Interfaces:
org.plumelib.util.DeepCopyable<WholeProgramInferenceJavaParserStorage.CallableDeclarationAnnos>
- Enclosing class:
- WholeProgramInferenceJavaParserStorage
public class WholeProgramInferenceJavaParserStorage.CallableDeclarationAnnos
extends Object
implements org.plumelib.util.DeepCopyable<WholeProgramInferenceJavaParserStorage.CallableDeclarationAnnos>
Stores the JavaParser node for a method or constructor and the annotations that have been
inferred about its parameters and return type.
-
Field Summary
Modifier and TypeFieldDescriptionfinal com.github.javaparser.ast.body.CallableDeclaration<?>
Wrapped method or constructor declaration. -
Constructor Summary
ConstructorDescriptionCallableDeclarationAnnos
(com.github.javaparser.ast.body.CallableDeclaration<?> declaration) Creates a wrapper for the given method or constructor declaration. -
Method Summary
Modifier and TypeMethodDescriptionboolean
addDeclarationAnnotation
(AnnotationMirror annotation) Adds a declaration annotation to this callable declaration and returns whether it was a new annotation.boolean
addDeclarationAnnotationToFormalParameter
(AnnotationMirror annotation, @org.checkerframework.checker.index.qual.Positive int index_1based) Adds a declaration annotation to this parameter and returns whether it was a new annotation.deepCopy()
Returns the inferred declaration annotations on this executable.getParameterType
(int index) Returns the inferred type for the parameter at the given index, or null if there's no parameter at the given index or there's no inferred type for that parameter.getParameterTypeInitialized
(AnnotatedTypeMirror type, @org.checkerframework.checker.index.qual.Positive int index_1based, AnnotatedTypeFactory atf) Returns the inferred type for the parameter at the given index.Map<String,
org.plumelib.util.IPair<AnnotatedTypeMirror, AnnotatedTypeMirror>> Returns the inferred postconditions for this callable declaration.getPostconditionsForExpression
(String expression, AnnotatedTypeMirror declaredType, AnnotatedTypeFactory atf) Returns an AnnotatedTypeMirror containing the postconditions for the given expression.Map<String,
org.plumelib.util.IPair<AnnotatedTypeMirror, AnnotatedTypeMirror>> Returns the inferred preconditions for this callable declaration.getPreconditionsForExpression
(String expression, AnnotatedTypeMirror declaredType, AnnotatedTypeFactory atf) Returns an AnnotatedTypeMirror containing the preconditions for the given expression.If this wrapper holds a method, returns the inferred type of the receiver.getReturnType
(AnnotatedTypeMirror type, AnnotatedTypeFactory atf) If this wrapper holds a method, returns the inferred type of the return type.toString()
void
Transfers all annotations inferred by whole program inference for the return type, receiver type, and parameter types for the wrapped declaration to their corresponding JavaParser locations.
-
Field Details
-
declaration
public final com.github.javaparser.ast.body.CallableDeclaration<?> declarationWrapped method or constructor declaration.
-
-
Constructor Details
-
CallableDeclarationAnnos
public CallableDeclarationAnnos(com.github.javaparser.ast.body.CallableDeclaration<?> declaration) Creates a wrapper for the given method or constructor declaration.- Parameters:
declaration
- method or constructor declaration to wrap
-
-
Method Details
-
deepCopy
- Specified by:
deepCopy
in interfaceorg.plumelib.util.DeepCopyable<WholeProgramInferenceJavaParserStorage.CallableDeclarationAnnos>
-
getParameterTypeInitialized
public AnnotatedTypeMirror getParameterTypeInitialized(AnnotatedTypeMirror type, @org.checkerframework.checker.index.qual.Positive int index_1based, AnnotatedTypeFactory atf) Returns the inferred type for the parameter at the given index. If necessary, initializes theAnnotatedTypeMirror
for that location usingtype
andatf
to a wrapper around the base type for the parameter.- Parameters:
type
- type for the parameter atindex
, used for initializing the returnedAnnotatedTypeMirror
the first time it's accessedatf
- the annotated type factory of a given type system, whose type hierarchy will be usedindex_1based
- index of the parameter to return the inferred annotations of (1-based)- Returns:
- an
AnnotatedTypeMirror
containing all annotations inferred for the parameter at the given index
-
getParameterType
Returns the inferred type for the parameter at the given index, or null if there's no parameter at the given index or there's no inferred type for that parameter.- Parameters:
index
- index of the parameter to return the inferred annotations of- Returns:
- an
AnnotatedTypeMirror
containing all annotations inferred for the parameter at the given index, or null if there's no parameter atindex
or if there's not inferred annotations for that parameter
-
addDeclarationAnnotationToFormalParameter
public boolean addDeclarationAnnotationToFormalParameter(AnnotationMirror annotation, @org.checkerframework.checker.index.qual.Positive int index_1based) Adds a declaration annotation to this parameter and returns whether it was a new annotation.- Parameters:
annotation
- the declaration annotation to addindex_1based
- index of the parameter (1-indexed)- Returns:
- true if
annotation
wasn't previously stored for this parameter
-
getReceiverType
If this wrapper holds a method, returns the inferred type of the receiver. If necessary, initializes theAnnotatedTypeMirror
for that location usingtype
andatf
to a wrapper around the base type for the receiver type.- Parameters:
type
- base type for the receiver type, used for initializing the returnedAnnotatedTypeMirror
the first time it's accessedatf
- the annotated type factory of a given type system, whose type hierarchy will be used- Returns:
- an
AnnotatedTypeMirror
containing all annotations inferred for the receiver type
-
getReturnType
If this wrapper holds a method, returns the inferred type of the return type. If necessary, initializes theAnnotatedTypeMirror
for that location usingtype
andatf
to a wrapper around the base type for the return type.- Parameters:
type
- base type for the return type, used for initializing the returnedAnnotatedTypeMirror
the first time it's accessedatf
- the annotated type factory of a given type system, whose type hierarchy will be used- Returns:
- an
AnnotatedTypeMirror
containing all annotations inferred for the return type
-
getDeclarationAnnotations
Returns the inferred declaration annotations on this executable. Returns an empty set if there are no annotations.- Returns:
- the declaration annotations for this callable declaration
-
addDeclarationAnnotation
Adds a declaration annotation to this callable declaration and returns whether it was a new annotation.- Parameters:
annotation
- the declaration annotation to add- Returns:
- true if
annotation
wasn't previously stored for this callable declaration
-
getPreconditions
public Map<String,org.plumelib.util.IPair<AnnotatedTypeMirror, getPreconditions()AnnotatedTypeMirror>> Returns the inferred preconditions for this callable declaration. The keys of the returned map use the same string formatting as theRequiresQualifier
annotation, e.g. "#1" for the first parameter.Although the map is immutable, the AnnotatedTypeMirrors within it can be modified, and such changes will be reflected in the receiver CallableDeclarationAnnos object.
- Returns:
- a mapping from Java expression string to pairs of (inferred precondition for the expression, declared type of the expression)
- See Also:
-
getPostconditions
public Map<String,org.plumelib.util.IPair<AnnotatedTypeMirror, getPostconditions()AnnotatedTypeMirror>> Returns the inferred postconditions for this callable declaration. The keys of the returned map use the same string formatting as theEnsuresQualifier
annotation, e.g. "#1" for the first parameter.Although the map is immutable, the AnnotatedTypeMirrors within it can be modified, and such changes will be reflected in the receiver CallableDeclarationAnnos object.
- Returns:
- a mapping from Java expression string to pairs of (inferred postcondition for the expression, declared type of the expression)
- See Also:
-
getPreconditionsForExpression
public AnnotatedTypeMirror getPreconditionsForExpression(String expression, AnnotatedTypeMirror declaredType, AnnotatedTypeFactory atf) Returns an AnnotatedTypeMirror containing the preconditions for the given expression. Changes to the returned AnnotatedTypeMirror are reflected in this CallableDeclarationAnnos.- Parameters:
expression
- a string representing a Java expression, in the same format as the argument to aRequiresQualifier
annotationdeclaredType
- the declared type ofexpression
atf
- the annotated type factory of a given type system, whose type hierarchy will be used- Returns:
- an
AnnotatedTypeMirror
containing the annotations for the inferred preconditions for the given expression
-
getPostconditionsForExpression
public AnnotatedTypeMirror getPostconditionsForExpression(String expression, AnnotatedTypeMirror declaredType, AnnotatedTypeFactory atf) Returns an AnnotatedTypeMirror containing the postconditions for the given expression. Changes to the returned AnnotatedTypeMirror are reflected in this CallableDeclarationAnnos.- Parameters:
expression
- a string representing a Java expression, in the same format as the argument to aEnsuresQualifier
annotationdeclaredType
- the declared type ofexpression
atf
- the annotated type factory of a given type system, whose type hierarchy will be used- Returns:
- an
AnnotatedTypeMirror
containing the annotations for the inferred postconditions for the given expression
-
transferAnnotations
public void transferAnnotations()Transfers all annotations inferred by whole program inference for the return type, receiver type, and parameter types for the wrapped declaration to their corresponding JavaParser locations. -
toString
-