Interface JClassRef
-
- All Known Implementing Classes:
ClassImpl,DirectJClassRef,QualifiedJClassRef,UnqualifiedJClassRef
public interface JClassRefObject which holds a reference to a JClass. Using this interface (as opposed to referring to the JClass directly) allows us to do lazy type resolution.
Note that ClassImpl implements this interface directly (as a reference to itself) as an optimization for the case where we don't need or want lazy type resolution
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetQualifiedName()JClassgetRefClass()
-
-
-
Method Detail
-
getRefClass
JClass getRefClass()
-
getQualifiedName
java.lang.String getQualifiedName()
-
-