summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/util/_XCloneable.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/util/_XCloneable.java')
-rw-r--r--qadevOOo/tests/java/ifc/util/_XCloneable.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/qadevOOo/tests/java/ifc/util/_XCloneable.java b/qadevOOo/tests/java/ifc/util/_XCloneable.java
index 4591be5cfc2e..85ffe637237c 100644
--- a/qadevOOo/tests/java/ifc/util/_XCloneable.java
+++ b/qadevOOo/tests/java/ifc/util/_XCloneable.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -48,7 +48,7 @@ public class _XCloneable extends MultiMethodTest {
// oObj filled by MultiMethodTest
public XCloneable oObj = null ;
protected XCloneable clone = null;
-
+
/**
* calls the method. <p>
* Has <b>OK</b> status if no exception has occured. <p>
@@ -59,23 +59,23 @@ public class _XCloneable extends MultiMethodTest {
//check if the implementaionname equals
result &= checkImplementationName(oObj,clone);
-
+
//check ImplementationID
result &= checkImplementationID(oObj, clone);
-
+
tRes.tested("createClone()", result) ;
}
-
+
protected byte[] getImplementationID(XInterface ifc) {
byte[] res = new byte[0];
- XTypeProvider provider = (XTypeProvider)
+ XTypeProvider provider = (XTypeProvider)
UnoRuntime.queryInterface(XTypeProvider.class, ifc);
if (provider != null) {
res = provider.getImplementationId();
}
return res;
- }
-
+ }
+
protected boolean checkImplementationID(XInterface org, XInterface clone) {
boolean res = getImplementationID(org).equals(
getImplementationID(clone));
@@ -84,18 +84,18 @@ public class _XCloneable extends MultiMethodTest {
log.println("------------------------------------------------------------------------");
}
return !res;
- }
-
+ }
+
protected String getImplementationName(XInterface ifc) {
String res = "";
- XServiceInfo info = (XServiceInfo)
+ XServiceInfo info = (XServiceInfo)
UnoRuntime.queryInterface(XServiceInfo.class, ifc);
if (info != null) {
res = info.getImplementationName();
}
return res;
}
-
+
protected boolean checkImplementationName(XInterface org, XInterface clone) {
boolean res = getImplementationName(org).equals(
getImplementationName(clone));