summaryrefslogtreecommitdiff
path: root/qadevOOo
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2005-06-14 14:52:31 +0000
committerOliver Bolte <obo@openoffice.org>2005-06-14 14:52:31 +0000
commit05e52ae244f530d46a2a65208fa9730131dcfc0c (patch)
tree5115aca014a34a934862a04d0d6e1e47cdbd467c /qadevOOo
parent569db4cb34f3620375419b13c7c2f0c1706803f0 (diff)
INTEGRATION: CWS qadev23 (1.4.64); FILE MERGED
2005/04/29 08:14:19 cn 1.4.64.1: #i38579# add object relation 'TEXT'
Diffstat (limited to 'qadevOOo')
-rw-r--r--qadevOOo/tests/java/mod/_svx/SvxUnoText.java13
1 files changed, 10 insertions, 3 deletions
diff --git a/qadevOOo/tests/java/mod/_svx/SvxUnoText.java b/qadevOOo/tests/java/mod/_svx/SvxUnoText.java
index d79b120879a1..df9598bc50ff 100644
--- a/qadevOOo/tests/java/mod/_svx/SvxUnoText.java
+++ b/qadevOOo/tests/java/mod/_svx/SvxUnoText.java
@@ -2,9 +2,9 @@
*
* $RCSfile: SvxUnoText.java,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change:$Date: 2004-01-05 19:52:58 $
+ * last change:$Date: 2005-06-14 15:52:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -61,6 +61,7 @@
package mod._svx;
+import com.sun.star.text.XText;
import java.io.PrintWriter;
import lib.StatusException;
@@ -149,10 +150,11 @@ public class SvxUnoText extends TestCase {
XInterface oObj = null;
// create testobject here
XTextRange aRange = null;
+ XShape oShape = null;
try {
SOfficeFactory SOF = SOfficeFactory.getFactory((XMultiServiceFactory)tParam.getMSF()) ;
- XShape oShape = SOF.createShape
+ oShape = SOF.createShape
(xDrawDoc,5000,3500,7500,5000,"Text");
DrawTools.getShapes(DrawTools.getDrawPage(xDrawDoc,0)).add(oShape);
@@ -187,9 +189,14 @@ public class SvxUnoText extends TestCase {
"com.sun.star.text.TextField.DateTime");
log.println( " adding InstCreator object" );
tEnv.addObjRelation( "XTEXTINFO", new InstCreator( xDrawDoc, tDsc ) );
+
// adding relation for XTextRangeMover
tEnv.addObjRelation("RangeForMove", aRange);
tEnv.addObjRelation("XTextRange", oObj);
+
+ // adding relation for XTextRangeComapre
+ tEnv.addObjRelation("TEXT", (XText) UnoRuntime.queryInterface(XText.class, oShape)) ;
+
return tEnv;
} // finish method getTestEnvironment