Class JavaNameOccurrence
- java.lang.Object
-
- net.sourceforge.pmd.lang.java.symboltable.JavaNameOccurrence
-
- All Implemented Interfaces:
net.sourceforge.pmd.lang.symboltable.NameOccurrence
public class JavaNameOccurrence extends java.lang.Object implements net.sourceforge.pmd.lang.symboltable.NameOccurrence
-
-
Constructor Summary
Constructors Constructor Description JavaNameOccurrence(JavaNode location, java.lang.String image)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)intgetArgumentCount()java.lang.StringgetImage()JavaNodegetLocation()net.sourceforge.pmd.lang.symboltable.NameOccurrencegetNameForWhichThisIsAQualifier()inthashCode()booleanisMethodOrConstructorInvocation()booleanisMethodReference()booleanisOnLeftHandSide()booleanisOnRightHandSide()booleanisPartOfQualifiedName()booleanisSelfAssignment()Assert it the occurrence is a self assignment such as:i += 3;booleanisThisOrSuper()Simply return true is the image is equal to keyword 'this' or 'super'.voidsetArgumentCount(int count)voidsetIsMethodOrConstructorInvocation()voidsetNameWhichThisQualifies(net.sourceforge.pmd.lang.symboltable.NameOccurrence qualifiedName)java.lang.StringtoString()booleanuseThisOrSuper()Simply return if the image start with keyword 'this' or 'super'.
-
-
-
Constructor Detail
-
JavaNameOccurrence
public JavaNameOccurrence(JavaNode location, java.lang.String image)
-
-
Method Detail
-
setIsMethodOrConstructorInvocation
public void setIsMethodOrConstructorInvocation()
-
setArgumentCount
public void setArgumentCount(int count)
-
getArgumentCount
public int getArgumentCount()
-
isMethodOrConstructorInvocation
public boolean isMethodOrConstructorInvocation()
-
isMethodReference
public boolean isMethodReference()
-
setNameWhichThisQualifies
public void setNameWhichThisQualifies(net.sourceforge.pmd.lang.symboltable.NameOccurrence qualifiedName)
-
getNameForWhichThisIsAQualifier
public net.sourceforge.pmd.lang.symboltable.NameOccurrence getNameForWhichThisIsAQualifier()
-
isPartOfQualifiedName
public boolean isPartOfQualifiedName()
-
getLocation
public JavaNode getLocation()
- Specified by:
getLocationin interfacenet.sourceforge.pmd.lang.symboltable.NameOccurrence
-
isOnRightHandSide
public boolean isOnRightHandSide()
-
isOnLeftHandSide
public boolean isOnLeftHandSide()
-
isSelfAssignment
public boolean isSelfAssignment()
Assert it the occurrence is a self assignment such as:i += 3;- Returns:
- true, if the occurrence is self-assignment, false, otherwise.
-
isThisOrSuper
public boolean isThisOrSuper()
Simply return true is the image is equal to keyword 'this' or 'super'.- Returns:
- return true if image equal to 'this' or 'super'.
-
useThisOrSuper
public boolean useThisOrSuper()
Simply return if the image start with keyword 'this' or 'super'.- Returns:
- true, if keyword is used, false otherwise.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
getImage
public java.lang.String getImage()
- Specified by:
getImagein interfacenet.sourceforge.pmd.lang.symboltable.NameOccurrence
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-