Searched refs:otherClass (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/tools/launcher/
H A DUnicodeTest.java158 private static void generateSource(String thisClass, String otherClass) throws Exception { argument
163 out.write(" if (!" + otherClass + "." + otherClass.toLowerCase() + "().equals(\"" + otherClass + "\")) {\n");
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeDataInvocationHandler.java237 final Class<?> otherClass = other.getClass();
238 if (proxyClass != otherClass)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DProviderEndpointModel.java80 Class otherClass = (binding instanceof SOAPBinding)
102 "Illeagal combination - Mode.PAYLOAD and Provider<"+otherClass.getName()+">");
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassDefinition.java539 public boolean superClassOf(Environment env, ClassDeclaration otherClass) argument
541 while (otherClass != null) {
542 if (getClassDeclaration().equals(otherClass)) {
545 otherClass = otherClass.getClassDefinition(env).getSuperClass();
553 public boolean enclosingClassOf(ClassDefinition otherClass) { argument
554 while ((otherClass = otherClass.getOuterClass()) != null) {
555 if (this == otherClass) {
565 public boolean subClassOf(Environment env, ClassDeclaration otherClass) throw argument
[all...]

Completed in 54 milliseconds