Class CtParameterImpl<T>
- java.lang.Object
-
- spoon.support.reflect.declaration.CtElementImpl
-
- spoon.support.reflect.declaration.CtNamedElementImpl
-
- spoon.support.reflect.declaration.CtParameterImpl<T>
-
- All Implemented Interfaces:
Serializable
,Cloneable
,FactoryAccessor
,SourcePositionHolder
,CtElement
,CtModifiable
,CtNamedElement
,CtParameter<T>
,CtShadowable
,CtTypedElement<T>
,CtVariable<T>
,CtQueryable
,CtVisitable
public class CtParameterImpl<T> extends CtNamedElementImpl implements CtParameter<T>
The implementation forCtParameter
.- Author:
- Renaud Pawlak
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class spoon.support.reflect.declaration.CtElementImpl
ERROR_MESSAGE_TO_STRING, factory, LOGGER, parent
-
-
Constructor Summary
Constructors Constructor Description CtParameterImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(CtVisitor v)
Accepts a visitor<C extends CtModifiable>
CaddModifier(ModifierKind modifier)
add a modifierCtParameter<T>
clone()
Clone the element which calls this method in a new object.CtExpression<T>
getDefaultExpression()
Gets the initialization expression assigned to the variable (also known as the initializer), when declared.Set<CtExtendedModifier>
getExtendedModifiers()
Set<ModifierKind>
getModifiers()
Returns the modifiers of this element, excluding annotations.CtExecutable<?>
getParent()
Gets the parent of current reference.CtParameterReference<T>
getReference()
Returns the corresponding reference.CtTypeReference<T>
getType()
Gets this element's type.ModifierKind
getVisibility()
Gets the visibility of this modifiable element.boolean
hasModifier(ModifierKind modifier)
Tells if this element contains the given modifier.boolean
isAbstract()
Returns true if it contains an abstract modifier (seeCtModifiable.hasModifier(ModifierKind)
)boolean
isFinal()
Returns true if it contains a final modifier (seeCtModifiable.hasModifier(ModifierKind)
)boolean
isInferred()
Returns true if this parameter is a lambda parameter with type defined using the `var` keyword (since Java 11).boolean
isPartOfJointDeclaration()
Returns true it the variable (field, localvariable) is jointly declared with a share type Eg int a,b; Warning: is computed on demandboolean
isPrivate()
Returns true if it contains a private modifier (seeCtModifiable.hasModifier(ModifierKind)
)boolean
isProtected()
Returns true if it contains a protected modifier (seeCtModifiable.hasModifier(ModifierKind)
)boolean
isPublic()
Returns true if it contains a public modifier (seeCtModifiable.hasModifier(ModifierKind)
)boolean
isShadow()
When an element isn't present in the factory (created in another factory), this element is considered as "shadow".boolean
isStatic()
Returns true if it contains a static modifier (seeCtModifiable.hasModifier(ModifierKind)
)boolean
isVarArgs()
Returns true if this parameter accepts a variable number of arguments (must be the last parameter ofCtExecutable.getParameters()
).<C extends CtModifiable>
CremoveModifier(ModifierKind modifier)
remove a modifier<C extends CtVariable<T>>
CsetDefaultExpression(CtExpression<T> defaultExpression)
Sets the initialization expression assigned to the variable, when declared.<T extends CtModifiable>
TsetExtendedModifiers(Set<CtExtendedModifier> extendedModifiers)
<U extends CtParameter<T>>
UsetInferred(boolean inferred)
Set to true if this parameter is a lambda parameter with type defined using the `var` keyword.<C extends CtModifiable>
CsetModifiers(Set<ModifierKind> modifiers)
Sets the modifiers.<E extends CtShadowable>
EsetShadow(boolean isShadow)
Marks an element as shadow.<C extends CtTypedElement>
CsetType(CtTypeReference<T> type)
Sets this element's type.<C extends CtParameter<T>>
CsetVarArgs(boolean varArgs)
Sets this parameter to have varargs.<C extends CtModifiable>
CsetVisibility(ModifierKind visibility)
Sets the visibility of this modifiable element (replaces old visibility).-
Methods inherited from class spoon.support.reflect.declaration.CtNamedElementImpl
getSimpleName, setSimpleName
-
Methods inherited from class spoon.support.reflect.declaration.CtElementImpl
addAnnotation, addComment, asIterable, comment, delete, descendantIterator, emptyList, emptySet, equals, filterChildren, getAllMetadata, getAnnotatedChildren, getAnnotation, getAnnotation, getAnnotations, getComments, getDirectChildren, getDocComment, getElements, getFactory, getMetadata, getMetadataKeys, getOriginalSourceFragment, getParent, getParent, getPath, getPosition, getReferencedTypes, getRoleInParent, getShortRepresentation, getValueByRole, hasAnnotation, hashCode, hasParent, isImplicit, isParentInitialized, map, map, prettyprint, putMetadata, removeAnnotation, removeComment, replace, replace, setAllMetadata, setAnnotations, setComments, setDocComment, setFactory, setImplicit, setParent, setPosition, setPositions, setValueByRole, toString, toStringDebug, unmodifiableList, updateAllParentsBelow
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface spoon.reflect.declaration.CtElement
addAnnotation, addComment, asIterable, delete, descendantIterator, getAllMetadata, getAnnotatedChildren, getAnnotation, getAnnotation, getAnnotations, getComments, getDirectChildren, getDocComment, getElements, getMetadata, getMetadataKeys, getOriginalSourceFragment, getParent, getParent, getPath, getPosition, getReferencedTypes, getRoleInParent, getShortRepresentation, getValueByRole, hasAnnotation, hasParent, isImplicit, isParentInitialized, prettyprint, putMetadata, removeAnnotation, removeComment, replace, replace, setAllMetadata, setAnnotations, setComments, setDocComment, setImplicit, setParent, setPosition, setPositions, setValueByRole, toString, toStringDebug, updateAllParentsBelow
-
Methods inherited from interface spoon.reflect.declaration.CtNamedElement
getSimpleName, setSimpleName
-
Methods inherited from interface spoon.reflect.visitor.chain.CtQueryable
filterChildren, map, map
-
Methods inherited from interface spoon.processing.FactoryAccessor
getFactory, setFactory
-
-
-
-
Method Detail
-
accept
public void accept(CtVisitor v)
Description copied from interface:CtVisitable
Accepts a visitor- Specified by:
accept
in interfaceCtVisitable
-
getDefaultExpression
public CtExpression<T> getDefaultExpression()
Description copied from interface:CtVariable
Gets the initialization expression assigned to the variable (also known as the initializer), when declared.- Specified by:
getDefaultExpression
in interfaceCtVariable<T>
-
getReference
public CtParameterReference<T> getReference()
Description copied from interface:CtNamedElement
Returns the corresponding reference.- Specified by:
getReference
in interfaceCtNamedElement
- Specified by:
getReference
in interfaceCtParameter<T>
- Specified by:
getReference
in interfaceCtVariable<T>
- Overrides:
getReference
in classCtNamedElementImpl
-
getType
public CtTypeReference<T> getType()
Description copied from interface:CtTypedElement
Gets this element's type.- Specified by:
getType
in interfaceCtTypedElement<T>
-
setDefaultExpression
public <C extends CtVariable<T>> C setDefaultExpression(CtExpression<T> defaultExpression)
Description copied from interface:CtVariable
Sets the initialization expression assigned to the variable, when declared.- Specified by:
setDefaultExpression
in interfaceCtParameter<T>
- Specified by:
setDefaultExpression
in interfaceCtVariable<T>
-
isPartOfJointDeclaration
public boolean isPartOfJointDeclaration()
Description copied from interface:CtVariable
Returns true it the variable (field, localvariable) is jointly declared with a share type Eg int a,b; Warning: is computed on demand- Specified by:
isPartOfJointDeclaration
in interfaceCtVariable<T>
-
isInferred
public boolean isInferred()
Description copied from interface:CtParameter
Returns true if this parameter is a lambda parameter with type defined using the `var` keyword (since Java 11).- Specified by:
isInferred
in interfaceCtParameter<T>
-
setInferred
public <U extends CtParameter<T>> U setInferred(boolean inferred)
Description copied from interface:CtParameter
Set to true if this parameter is a lambda parameter with type defined using the `var` keyword. Warning: this method should only be used if compliance level is set to 11 or more.- Specified by:
setInferred
in interfaceCtParameter<T>
-
setType
public <C extends CtTypedElement> C setType(CtTypeReference<T> type)
Description copied from interface:CtTypedElement
Sets this element's type.- Specified by:
setType
in interfaceCtTypedElement<T>
-
isVarArgs
public boolean isVarArgs()
Description copied from interface:CtParameter
Returns true if this parameter accepts a variable number of arguments (must be the last parameter ofCtExecutable.getParameters()
).- Specified by:
isVarArgs
in interfaceCtParameter<T>
-
setVarArgs
public <C extends CtParameter<T>> C setVarArgs(boolean varArgs)
Description copied from interface:CtParameter
Sets this parameter to have varargs.- Specified by:
setVarArgs
in interfaceCtParameter<T>
-
getModifiers
public Set<ModifierKind> getModifiers()
Description copied from interface:CtModifiable
Returns the modifiers of this element, excluding annotations. Implicit modifiers, such as thepublic
andstatic
modifiers of interface members, are included.- Specified by:
getModifiers
in interfaceCtModifiable
- Returns:
- the modifiers of this declaration in undefined order; an empty set if there are none
-
hasModifier
public boolean hasModifier(ModifierKind modifier)
Description copied from interface:CtModifiable
Tells if this element contains the given modifier.- Specified by:
hasModifier
in interfaceCtModifiable
- Parameters:
modifier
- to search- Returns:
true
if this element contain the modifier
-
setModifiers
public <C extends CtModifiable> C setModifiers(Set<ModifierKind> modifiers)
Description copied from interface:CtModifiable
Sets the modifiers.- Specified by:
setModifiers
in interfaceCtModifiable
-
addModifier
public <C extends CtModifiable> C addModifier(ModifierKind modifier)
Description copied from interface:CtModifiable
add a modifier- Specified by:
addModifier
in interfaceCtModifiable
-
removeModifier
public <C extends CtModifiable> C removeModifier(ModifierKind modifier)
Description copied from interface:CtModifiable
remove a modifier- Specified by:
removeModifier
in interfaceCtModifiable
-
setVisibility
public <C extends CtModifiable> C setVisibility(ModifierKind visibility)
Description copied from interface:CtModifiable
Sets the visibility of this modifiable element (replaces old visibility).- Specified by:
setVisibility
in interfaceCtModifiable
-
getVisibility
public ModifierKind getVisibility()
Description copied from interface:CtModifiable
Gets the visibility of this modifiable element.- Specified by:
getVisibility
in interfaceCtModifiable
-
getParent
public CtExecutable<?> getParent()
Description copied from interface:CtElement
Gets the parent of current reference.- Specified by:
getParent
in interfaceCtElement
- Specified by:
getParent
in interfaceCtParameter<T>
- Overrides:
getParent
in classCtElementImpl
-
getExtendedModifiers
public Set<CtExtendedModifier> getExtendedModifiers()
- Specified by:
getExtendedModifiers
in interfaceCtModifiable
- Returns:
- the set of extended modifiers (those incl. implicit).
-
setExtendedModifiers
public <T extends CtModifiable> T setExtendedModifiers(Set<CtExtendedModifier> extendedModifiers)
- Specified by:
setExtendedModifiers
in interfaceCtModifiable
-
isShadow
public boolean isShadow()
Description copied from interface:CtShadowable
When an element isn't present in the factory (created in another factory), this element is considered as "shadow". e.g., a shadow element can be a CtType of java.lang.Class built when we callCtTypeReference.getTypeDeclaration()
on a reference of java.lang.Class.- Specified by:
isShadow
in interfaceCtShadowable
- Returns:
- true if the element is a shadow element, otherwise false.
-
setShadow
public <E extends CtShadowable> E setShadow(boolean isShadow)
Description copied from interface:CtShadowable
Marks an element as shadow. To know what is a shadow element, see the javadoc ofCtShadowable.isShadow()
.- Specified by:
setShadow
in interfaceCtShadowable
-
clone
public CtParameter<T> clone()
Description copied from interface:CtElement
Clone the element which calls this method in a new object. Note that that references are kept as is, and thus, so if you clone whole classes or methods, some parts of the cloned element (eg executable references) may still point to the initial element. In this case, consider using methodsRefactoring.copyType(CtType)
andRefactoring.copyMethod(CtMethod)
instead which does additional work beyond cloning.- Specified by:
clone
in interfaceCtElement
- Specified by:
clone
in interfaceCtNamedElement
- Specified by:
clone
in interfaceCtParameter<T>
- Overrides:
clone
in classCtNamedElementImpl
-
isPublic
public boolean isPublic()
Description copied from interface:CtModifiable
Returns true if it contains a public modifier (seeCtModifiable.hasModifier(ModifierKind)
)- Specified by:
isPublic
in interfaceCtModifiable
-
isPrivate
public boolean isPrivate()
Description copied from interface:CtModifiable
Returns true if it contains a private modifier (seeCtModifiable.hasModifier(ModifierKind)
)- Specified by:
isPrivate
in interfaceCtModifiable
-
isProtected
public boolean isProtected()
Description copied from interface:CtModifiable
Returns true if it contains a protected modifier (seeCtModifiable.hasModifier(ModifierKind)
)- Specified by:
isProtected
in interfaceCtModifiable
-
isFinal
public boolean isFinal()
Description copied from interface:CtModifiable
Returns true if it contains a final modifier (seeCtModifiable.hasModifier(ModifierKind)
)- Specified by:
isFinal
in interfaceCtModifiable
-
isStatic
public boolean isStatic()
Description copied from interface:CtModifiable
Returns true if it contains a static modifier (seeCtModifiable.hasModifier(ModifierKind)
)- Specified by:
isStatic
in interfaceCtModifiable
-
isAbstract
public boolean isAbstract()
Description copied from interface:CtModifiable
Returns true if it contains an abstract modifier (seeCtModifiable.hasModifier(ModifierKind)
)- Specified by:
isAbstract
in interfaceCtModifiable
-
-