- java.lang.Object
-
- com.sun.tools.xjc.model.nav.NavigatorImpl
-
public final class NavigatorImpl extends Object implements Navigator<NType,NClass,Void,Void>
Navigatorimplementation for XJC. Most of the Navigator methods are used for parsing the model, which doesn't happen in XJC. So Most of the methods aren't really implemented. Implementations should be filled in as needed.- Author:
- Kohsuke Kawaguchi
-
-
Field Summary
Fields Modifier and Type Field Description static NavigatorImpltheInstance
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description NClassasDecl(NType nt)If the given type is an use of class declaration, returns the type casted asC.NClassasDecl(Class c)Gets theCrepresentation for the given class.static NClasscreate(Class c)static NTypecreate(Type t)static NTypecreateParameterizedType(NClass rawType, NType... args)Creates aNTyperepresentation for a parameterized typeRawType<ParamType1,ParamType2,...>.static NTypecreateParameterizedType(Class rawType, NType... args)<T> NTypeerasure(NType type)Computes the erasureNTypegetBaseClass(NType nt, NClass base)Gets the parameterization of the given base type.LocationgetClassLocation(NClass c)Returns a location of the specified class.StringgetClassName(NClass nClass)Gets the fully-qualified name of the class.StringgetClassShortName(NClass nClass)Gets the short name of the class ("Object" forObject.) For nested classes, this method should just return the inner name.NTypegetComponentType(NType nType)Gets the component type of the array.VoidgetDeclaredField(NClass clazz, String fieldName)Gets the named field declared on the given class.Collection<? extends Void>getDeclaredFields(NClass nClass)Gets all the declared fields of the given class.Collection<? extends Void>getDeclaredMethods(NClass nClass)Gets all the declared methods of the given class (regardless of their access modifiers, regardless of whether they override methods of the base classes.)NClassgetDeclaringClassForField(Void aVoid)Gets the class that declares the given field.NClassgetDeclaringClassForMethod(Void aVoid)Gets the class that declares the given method.Void[]getEnumConstants(NClass clazz)Gets the enumeration constants from an enum class.LocationgetFieldLocation(Void v)StringgetFieldName(Void aVoid)Gets the name of the field.NTypegetFieldType(Void aVoid)Gets the type of the field.LocationgetMethodLocation(Void v)StringgetMethodName(Void aVoid)Gets the name of the method, such as "toString" or "equals".NType[]getMethodParameters(Void aVoid)Returns the list of parameters to the method.StringgetPackageName(NClass clazz)Gets the package name of the given class.NTypegetPrimitive(Class primitiveType)Returns the representation for the given primitive type.NTypegetReturnType(Void aVoid)Gets the return type of a method.NClassgetSuperClass(NClass nClass)Gets the base class of the specified class.NTypegetTypeArgument(NType nt, int i)Gets the i-th type argument from a parameterized type.StringgetTypeName(NType type)Gets the display name of the type objectNTypegetVoidType()Gets the representation of the primitive "void" type.booleanhasDefaultConstructor(NClass nClass)Returns true if the given class has a no-arg default constructor.booleanisAbstract(NClass clazz)Returns true if this is an abstract class.booleanisArray(NType nType)Checks if the type is an array type.booleanisArrayButNotByteArray(NType t)Checks if the type is an array type but not byte[].booleanisBridgeMethod(Void method)Returns true if this method is a bridge method as defined in JLS.booleanisEnum(NClass c)Returns true if this is an enum class.booleanisFinal(NClass clazz)Deprecated.no class generated by XJC is final.booleanisFinalMethod(Void aVoid)Returns true if the method is final.booleanisInnerClass(NClass clazz)Returns true if the given class is an inner class.booleanisInterface(NClass clazz)Returns true if 'clazz' is an interface.booleanisOverriding(Void method, NClass clazz)Returns true if the given method is overriding another one defined in the base class 'base' or its ancestors.booleanisParameterizedType(NType nt)Returns true if t is a parameterized type.booleanisPrimitive(NType type)Checks if the given type is a primitive type.booleanisPublicField(Void aVoid)Returns true if the field is public.booleanisPublicMethod(Void aVoid)Returns true if the method is public.booleanisSameType(NType t1, NType t2)Checks if types are the samebooleanisStaticField(Void aVoid)Returns true if the field is static.booleanisStaticMethod(Void aVoid)Returns true if the method is static.booleanisSubClassOf(NType sub, NType sup)Checks ifsubis a sub-type ofsup.booleanisTransient(Void f)Returns true if the field is transient.NClassloadObjectFactory(NClass referencePoint, String pkg)Finds ObjectFactory for the given referencePoint.NClassref(JClass c)NClassref(Class c)Gets the representation of the given Java type inT.NTypeuse(NClass nc)Gets the T for the given C.
-
-
-
Field Detail
-
theInstance
public static final NavigatorImpl theInstance
-
-
Method Detail
-
getSuperClass
public NClass getSuperClass(NClass nClass)
Description copied from interface:NavigatorGets the base class of the specified class.
-
getBaseClass
public NType getBaseClass(NType nt, NClass base)
Description copied from interface:NavigatorGets the parameterization of the given base type.For example, given the following
This method works like this:interface Foo<T> extends List<List<T>> {} interface Bar extends Foo<String> {}getBaseClass( Bar, List ) = List<List<String>> getBaseClass( Bar, Foo ) = Foo<String> getBaseClass( Foo<? extends Number>, Collection ) = Collection<List<? extends Number>> getBaseClass( ArrayList<? extends BigInteger>, List ) = List<? extends BigInteger>
-
getClassName
public String getClassName(NClass nClass)
Description copied from interface:NavigatorGets the fully-qualified name of the class. ("java.lang.Object" forObject)
-
getTypeName
public String getTypeName(NType type)
Description copied from interface:NavigatorGets the display name of the type object
-
getClassShortName
public String getClassShortName(NClass nClass)
Description copied from interface:NavigatorGets the short name of the class ("Object" forObject.) For nested classes, this method should just return the inner name. (for example "Inner" for "com.acme.Outer$Inner".
-
getDeclaredFields
public Collection<? extends Void> getDeclaredFields(NClass nClass)
Description copied from interface:NavigatorGets all the declared fields of the given class.
-
getDeclaredField
public Void getDeclaredField(NClass clazz, String fieldName)
Description copied from interface:NavigatorGets the named field declared on the given class. This method doesn't visit ancestors, but does recognize non-public fields.
-
getDeclaredMethods
public Collection<? extends Void> getDeclaredMethods(NClass nClass)
Description copied from interface:NavigatorGets all the declared methods of the given class (regardless of their access modifiers, regardless of whether they override methods of the base classes.)Note that this method does not list methods declared on base classes.
-
getDeclaringClassForField
public NClass getDeclaringClassForField(Void aVoid)
Description copied from interface:NavigatorGets the class that declares the given field.
-
getDeclaringClassForMethod
public NClass getDeclaringClassForMethod(Void aVoid)
Description copied from interface:NavigatorGets the class that declares the given method.
-
getFieldType
public NType getFieldType(Void aVoid)
Description copied from interface:NavigatorGets the type of the field.
-
getFieldName
public String getFieldName(Void aVoid)
Description copied from interface:NavigatorGets the name of the field.
-
getMethodName
public String getMethodName(Void aVoid)
Description copied from interface:NavigatorGets the name of the method, such as "toString" or "equals".
-
getReturnType
public NType getReturnType(Void aVoid)
Description copied from interface:NavigatorGets the return type of a method.
-
getMethodParameters
public NType[] getMethodParameters(Void aVoid)
Description copied from interface:NavigatorReturns the list of parameters to the method.
-
isStaticMethod
public boolean isStaticMethod(Void aVoid)
Description copied from interface:NavigatorReturns true if the method is static.
-
isFinalMethod
public boolean isFinalMethod(Void aVoid)
Description copied from interface:NavigatorReturns true if the method is final.
-
isSubClassOf
public boolean isSubClassOf(NType sub, NType sup)
Description copied from interface:NavigatorChecks ifsubis a sub-type ofsup. TODO: should this method take T or C?
-
ref
public NClass ref(Class c)
Description copied from interface:NavigatorGets the representation of the given Java type inT.
-
use
public NType use(NClass nc)
Description copied from interface:NavigatorGets the T for the given C.
-
asDecl
public NClass asDecl(NType nt)
Description copied from interface:NavigatorIf the given type is an use of class declaration, returns the type casted asC. Otherwise null.TODO: define the exact semantics.
-
asDecl
public NClass asDecl(Class c)
Description copied from interface:NavigatorGets theCrepresentation for the given class. The behavior is undefined if the class object represents primitives, arrays, and other types that are not class declaration.
-
isArray
public boolean isArray(NType nType)
Description copied from interface:NavigatorChecks if the type is an array type.
-
isArrayButNotByteArray
public boolean isArrayButNotByteArray(NType t)
Description copied from interface:NavigatorChecks if the type is an array type but not byte[].
-
getComponentType
public NType getComponentType(NType nType)
Description copied from interface:NavigatorGets the component type of the array.
-
getTypeArgument
public NType getTypeArgument(NType nt, int i)
Description copied from interface:NavigatorGets the i-th type argument from a parameterized type. For example,getTypeArgument([Map<Integer,String>],0)=Integer- Specified by:
getTypeArgumentin interfaceNavigator<NType,NClass,Void,Void>- See Also:
Navigator.isParameterizedType(Object)
-
isParameterizedType
public boolean isParameterizedType(NType nt)
Description copied from interface:NavigatorReturns true if t is a parameterized type.
-
isPrimitive
public boolean isPrimitive(NType type)
Description copied from interface:NavigatorChecks if the given type is a primitive type.
-
getPrimitive
public NType getPrimitive(Class primitiveType)
Description copied from interface:NavigatorReturns the representation for the given primitive type.- Specified by:
getPrimitivein interfaceNavigator<NType,NClass,Void,Void>- Parameters:
primitiveType- must be Class objects likeInteger.TYPE.
-
createParameterizedType
public static NType createParameterizedType(NClass rawType, NType... args)
Creates aNTyperepresentation for a parameterized typeRawType<ParamType1,ParamType2,...>.
-
getClassLocation
public Location getClassLocation(NClass c)
Description copied from interface:NavigatorReturns a location of the specified class.
-
hasDefaultConstructor
public boolean hasDefaultConstructor(NClass nClass)
Description copied from interface:NavigatorReturns true if the given class has a no-arg default constructor. The constructor does not need to be public.
-
isStaticField
public boolean isStaticField(Void aVoid)
Description copied from interface:NavigatorReturns true if the field is static.
-
isPublicMethod
public boolean isPublicMethod(Void aVoid)
Description copied from interface:NavigatorReturns true if the method is public.
-
isPublicField
public boolean isPublicField(Void aVoid)
Description copied from interface:NavigatorReturns true if the field is public.
-
isEnum
public boolean isEnum(NClass c)
Description copied from interface:NavigatorReturns true if this is an enum class.
-
erasure
public <T> NType erasure(NType type)
Description copied from interface:NavigatorComputes the erasure
-
isAbstract
public boolean isAbstract(NClass clazz)
Description copied from interface:NavigatorReturns true if this is an abstract class.
-
isFinal
@Deprecated public boolean isFinal(NClass clazz)
Deprecated.no class generated by XJC is final.Description copied from interface:NavigatorReturns true if this is a final class.
-
getEnumConstants
public Void[] getEnumConstants(NClass clazz)
Description copied from interface:NavigatorGets the enumeration constants from an enum class.
-
getVoidType
public NType getVoidType()
Description copied from interface:NavigatorGets the representation of the primitive "void" type.
-
getPackageName
public String getPackageName(NClass clazz)
Description copied from interface:NavigatorGets the package name of the given class.
-
loadObjectFactory
public NClass loadObjectFactory(NClass referencePoint, String pkg)
Description copied from interface:NavigatorFinds ObjectFactory for the given referencePoint.
-
isBridgeMethod
public boolean isBridgeMethod(Void method)
Description copied from interface:NavigatorReturns true if this method is a bridge method as defined in JLS.
-
isOverriding
public boolean isOverriding(Void method, NClass clazz)
Description copied from interface:NavigatorReturns true if the given method is overriding another one defined in the base class 'base' or its ancestors.
-
isInterface
public boolean isInterface(NClass clazz)
Description copied from interface:NavigatorReturns true if 'clazz' is an interface.
-
isTransient
public boolean isTransient(Void f)
Description copied from interface:NavigatorReturns true if the field is transient.
-
isInnerClass
public boolean isInnerClass(NClass clazz)
Description copied from interface:NavigatorReturns true if the given class is an inner class. This is only used to improve the error diagnostics, so it's OK to fail to detect some inner classes as such. Note that this method should return false for nested classes (static classes.)
-
-