com.puppycrawl.tools.checkstyle.checks
Class AbstractTypeAwareCheck.ClassInfo
java.lang.Objectcom.puppycrawl.tools.checkstyle.checks.AbstractTypeAwareCheck.ClassInfo
- AbstractTypeAwareCheck
protected class AbstractTypeAwareCheck.ClassInfo
extends java.lang.Object
Contains class's FullIdent
and Class object if we can load it.
ClassInfo(FullIdent aName, String aCurrentClass)- Creates new instance of of class information object.
|
ClassInfo
public ClassInfo(FullIdent aName,
String aCurrentClass) Creates new instance of of class information object.
aName - FullIdent associated with new object.aCurrentClass - name of current surrounding class.
getClazz
public final Class getClazz()
Class associated with an object.
getName
public final FullIdent getName()
- class name
isLoadable
public final boolean isLoadable()
- if class is loadable ot not.
setClazz
public final void setClazz(Class aClass)
Associates Class with an object.
aClass - Class to associate with.