Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
02a43bdb
Kaydet (Commit)
02a43bdb
authored
May 17, 2006
tarafından
Vladimir Glazounov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
INTEGRATION: CWS qadev26 (1.6.4); FILE MERGED
2006/03/24 13:53:43 sw 1.6.4.1: #i22890#
üst
26a48bad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
SdUnoOutlineView.java
qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java
+19
-2
No files found.
qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java
Dosyayı görüntüle @
02a43bdb
...
@@ -4,9 +4,9 @@
...
@@ -4,9 +4,9 @@
*
*
* $RCSfile: SdUnoOutlineView.java,v $
* $RCSfile: SdUnoOutlineView.java,v $
*
*
* $Revision: 1.
6
$
* $Revision: 1.
7
$
*
*
* last change: $Author:
kz $ $Date: 2005-11-02 18:14:04
$
* last change: $Author:
vg $ $Date: 2006-05-17 13:38:52
$
*
*
* The Contents of this file are made available subject to
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
* the terms of GNU Lesser General Public License Version 2.1.
...
@@ -35,6 +35,7 @@
...
@@ -35,6 +35,7 @@
package
mod
.
_sd
;
package
mod
.
_sd
;
import
com.sun.star.text.XTextRange
;
import
java.io.PrintWriter
;
import
java.io.PrintWriter
;
import
lib.StatusException
;
import
lib.StatusException
;
...
@@ -43,9 +44,16 @@ import lib.TestEnvironment;
...
@@ -43,9 +44,16 @@ import lib.TestEnvironment;
import
lib.TestParameters
;
import
lib.TestParameters
;
import
util.DesktopTools
;
import
util.DesktopTools
;
import
util.SOfficeFactory
;
import
util.SOfficeFactory
;
import
util.dbg
;
import
util.utils
;
import
util.utils
;
import
com.sun.star.awt.XWindow
;
import
com.sun.star.awt.XWindow
;
import
com.sun.star.container.XIndexAccess
;
import
com.sun.star.drawing.XDrawPage
;
import
com.sun.star.drawing.XDrawPages
;
import
com.sun.star.drawing.XDrawPagesSupplier
;
import
com.sun.star.drawing.XShape
;
import
com.sun.star.drawing.XShapes
;
import
com.sun.star.frame.XController
;
import
com.sun.star.frame.XController
;
import
com.sun.star.frame.XDesktop
;
import
com.sun.star.frame.XDesktop
;
import
com.sun.star.frame.XDispatch
;
import
com.sun.star.frame.XDispatch
;
...
@@ -54,6 +62,8 @@ import com.sun.star.frame.XFrame;
...
@@ -54,6 +62,8 @@ import com.sun.star.frame.XFrame;
import
com.sun.star.frame.XModel
;
import
com.sun.star.frame.XModel
;
import
com.sun.star.lang.XComponent
;
import
com.sun.star.lang.XComponent
;
import
com.sun.star.lang.XMultiServiceFactory
;
import
com.sun.star.lang.XMultiServiceFactory
;
import
com.sun.star.uno.AnyConverter
;
import
com.sun.star.uno.Type
;
import
com.sun.star.uno.UnoRuntime
;
import
com.sun.star.uno.UnoRuntime
;
import
com.sun.star.uno.XInterface
;
import
com.sun.star.uno.XInterface
;
import
com.sun.star.util.URL
;
import
com.sun.star.util.URL
;
...
@@ -157,6 +167,12 @@ public class SdUnoOutlineView extends TestCase {
...
@@ -157,6 +167,12 @@ public class SdUnoOutlineView extends TestCase {
throw
new
StatusException
(
"Couldn't create document"
,
e
);
throw
new
StatusException
(
"Couldn't create document"
,
e
);
}
}
XDrawPagesSupplier
oDPS
=
(
XDrawPagesSupplier
)
UnoRuntime
.
queryInterface
(
XDrawPagesSupplier
.
class
,
xImpressDoc
);
XDrawPages
the_pages
=
oDPS
.
getDrawPages
();
XIndexAccess
oDPi
=
(
XIndexAccess
)
UnoRuntime
.
queryInterface
(
XIndexAccess
.
class
,
the_pages
);
XModel
aModel
=
(
XModel
)
XModel
aModel
=
(
XModel
)
UnoRuntime
.
queryInterface
(
XModel
.
class
,
xImpressDoc
);
UnoRuntime
.
queryInterface
(
XModel
.
class
,
xImpressDoc
);
...
@@ -200,6 +216,7 @@ public class SdUnoOutlineView extends TestCase {
...
@@ -200,6 +216,7 @@ public class SdUnoOutlineView extends TestCase {
oObj
=
aModel
.
getCurrentController
();
oObj
=
aModel
.
getCurrentController
();
log
.
println
(
"creating a new environment for impress view object"
);
log
.
println
(
"creating a new environment for impress view object"
);
TestEnvironment
tEnv
=
new
TestEnvironment
(
oObj
);
TestEnvironment
tEnv
=
new
TestEnvironment
(
oObj
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment