Searched defs:isSubtype (Results 1 - 7 of 7) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DTypes.java60 boolean isSubtype(TypeMirror t1, TypeMirror t2); method in interface:Types
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DTypeModeler.java107 return isSubtype(subType, superType);
119 if (isSubtype(typeDecl, defHolder)) {
160 public static boolean isSubtype(TypeDeclaration d1, TypeDeclaration d2) { method in class:TypeModeler
176 if (isSubtype(superIntf.getDeclaration(), d2)) {
178 } else if (superClassDecl != null && isSubtype(superClassDecl, d2)) {
H A DWebServiceAP.java340 return isSubtype(typeDecl, exceptionDecl);
344 return isSubtype(typeDecl, remoteExceptionDecl);
347 if(!isSubtype(apEnv,typeDecl,exceptionDecl))
349 if(isSubtype(apEnv,typeDecl,runtimeExceptionDecl) || isSubtype(apEnv,typeDecl,remoteExceptionDecl))
355 return isSubtype(typeDecl, remoteDecl);
358 public static boolean isSubtype(AnnotationProcessorEnvironment env, TypeDeclaration d1, TypeDeclaration d2) { method in class:WebServiceAP
360 return typeUtils.isSubtype(typeUtils.getDeclaredType(d1),typeUtils.getDeclaredType(d2));
363 public static boolean isSubtype(TypeDeclaration d1, TypeDeclaration d2) { method in class:WebServiceAP
381 if (superIntf != null && isSubtype(superInt
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/util/
H A DTypesImpl.java73 public boolean isSubtype(TypeMirror t1, TypeMirror t2) { method in class:TypesImpl
74 return env.jctypes.isSubtype(((TypeMirrorImpl) t1).type,
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DTypes.java86 boolean isSubtype(TypeMirror t1, TypeMirror t2); method in interface:Types
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/model/
H A DJavacTypes.java90 public boolean isSubtype(TypeMirror t1, TypeMirror t2) { method in class:JavacTypes
93 return types.isSubtype((Type) t1, (Type) t2);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java239 if (!isSubtype(res, t))
285 ? isSubtype(boxedClass(t).type, s)
286 : isSubtype(unboxedType(t), s);
298 // <editor-fold defaultstate="collapsed" desc="isSubtype">
323 } else if (isSubtype(t, s)) {
371 final public boolean isSubtype(Type t, Type s) { method in class:Types
372 return isSubtype(t, s, true);
375 return isSubtype(t, s, false);
377 public boolean isSubtype(Type t, Type s, boolean capture) { method in class:Types
386 if (!isSubtype(
399 private TypeRelation isSubtype = new TypeRelation() field in class:Types
[all...]

Completed in 59 milliseconds