Home
last modified time | relevance | path

Searched refs:isSupertypeOf (Results 1 – 6 of 6) sorted by relevance

/trunk/main/ridljar/test/com/sun/star/uno/
H A DType_Test.java94 assertTrue("LONG :> LONG", Type.LONG.isSupertypeOf(Type.LONG)); in testIsSupertypeOf()
95 assertTrue("not ANY :> XInterface", !Type.ANY.isSupertypeOf(ifc)); in testIsSupertypeOf()
96 assertTrue("ANY :> ANY", Type.ANY.isSupertypeOf(Type.ANY)); in testIsSupertypeOf()
97 assertTrue("not ANY :> LONG", !Type.ANY.isSupertypeOf(Type.LONG)); in testIsSupertypeOf()
98 assertTrue("not XInterface :> ANY", !ifc.isSupertypeOf(Type.ANY)); in testIsSupertypeOf()
99 assertTrue("XInterface :> XInterface", ifc.isSupertypeOf(ifc)); in testIsSupertypeOf()
100 assertTrue("XInterface :> XComponentContext", ifc.isSupertypeOf(ctx)); in testIsSupertypeOf()
101 assertTrue("not XComponentContext :> XInterface", !ctx.isSupertypeOf(ifc)); in testIsSupertypeOf()
103 ctx.isSupertypeOf(ctx)); in testIsSupertypeOf()
104 assertTrue("not XInterface :> RuntimeException", !ifc.isSupertypeOf(exc)); in testIsSupertypeOf()
/trunk/main/javaunohelper/com/sun/star/lib/uno/helper/
H A DPropertySetMixin.java774 if (new Type(UnknownPropertyException.class).isSupertypeOf( in setProperty()
779 } else if (new Type(PropertyVetoException.class).isSupertypeOf( in setProperty()
815 if (new Type(UnknownPropertyException.class).isSupertypeOf( in getProperty()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/environments/java/
H A Djava_environment.java255 if (type.isSupertypeOf(l2.type)) { in find()
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/uno/
H A DAnyConverter.java549 if (destType.isSupertypeOf(type)) { in convertSimple()
/trunk/main/ridljar/java/ridl/src/main/java/com/sun/star/uno/
H A DType.java391 public boolean isSupertypeOf(Type type) { in isSupertypeOf() method in Type
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/bridges/java_remote/
H A Djava_remote_bridge.java233 if (type.isSupertypeOf(rh.getType())) { in hasRefHolder()