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
2672c18c
Kaydet (Commit)
2672c18c
authored
May 27, 2003
tarafından
Vladimir Glazounov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
INTEGRATION: CWS qadev6 (1.2.2); FILE MERGED
2003/05/21 10:58:05 sg 1.2.2.1: #109819# prepare devide of runner
üst
96570a7e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
10 deletions
+11
-10
AccessiblePresentationShape.java
...vOOo/tests/java/mod/_svx/AccessiblePresentationShape.java
+5
-5
AccessibleShape.java
qadevOOo/tests/java/mod/_svx/AccessibleShape.java
+6
-5
No files found.
qadevOOo/tests/java/mod/_svx/AccessiblePresentationShape.java
Dosyayı görüntüle @
2672c18c
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: AccessiblePresentationShape.java,v $
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
* last change:$Date: 2003-0
4-28 12:16:29
$
* last change:$Date: 2003-0
5-27 13:35:28
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -89,7 +89,7 @@ public class AccessiblePresentationShape extends TestCase {
protected
void
initialize
(
TestParameters
tParam
,
PrintWriter
log
)
{
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
tParam
.
getMSF
()
);
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
(
XMultiServiceFactory
)
tParam
.
getMSF
()
);
try
{
log
.
println
(
"creating a drawdoc"
);
...
...
@@ -122,7 +122,7 @@ public class AccessiblePresentationShape extends TestCase {
// first we write what we are intend to do to log file
log
.
println
(
"creating a test environment"
);
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
tParam
.
getMSF
());
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
(
XMultiServiceFactory
)
tParam
.
getMSF
());
XMultiServiceFactory
docMSF
=
(
XMultiServiceFactory
)
UnoRuntime
.
queryInterface
(
XMultiServiceFactory
.
class
,
xDrawDoc
);
try
{
...
...
@@ -146,7 +146,7 @@ public class AccessiblePresentationShape extends TestCase {
AccessibilityTools
at
=
new
AccessibilityTools
();
XWindow
xWindow
=
at
.
getCurrentWindow
(
tParam
.
getMSF
(),
aModel
);
XWindow
xWindow
=
at
.
getCurrentWindow
(
(
XMultiServiceFactory
)
tParam
.
getMSF
(),
aModel
);
XAccessible
xRoot
=
at
.
getAccessibleObject
(
xWindow
);
//at.printAccessibleTree(log,xRoot);
...
...
qadevOOo/tests/java/mod/_svx/AccessibleShape.java
Dosyayı görüntüle @
2672c18c
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: AccessibleShape.java,v $
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
* last change:$Date: 2003-0
4-28 12:16:32
$
* last change:$Date: 2003-0
5-27 13:35:39
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -66,6 +66,7 @@ import com.sun.star.awt.XWindow;
import
com.sun.star.drawing.XShape
;
import
com.sun.star.frame.XModel
;
import
com.sun.star.lang.XComponent
;
import
com.sun.star.lang.XMultiServiceFactory
;
import
com.sun.star.uno.UnoRuntime
;
import
com.sun.star.uno.XInterface
;
import
com.sun.star.accessibility.AccessibleRole
;
...
...
@@ -87,7 +88,7 @@ public class AccessibleShape extends TestCase {
protected
void
initialize
(
TestParameters
tParam
,
PrintWriter
log
)
{
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
tParam
.
getMSF
()
);
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
(
XMultiServiceFactory
)
tParam
.
getMSF
()
);
try
{
log
.
println
(
"creating a drawdoc"
);
...
...
@@ -119,7 +120,7 @@ public class AccessibleShape extends TestCase {
// first we write what we are intend to do to log file
log
.
println
(
"creating a test environment"
);
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
tParam
.
getMSF
());
SOfficeFactory
SOF
=
SOfficeFactory
.
getFactory
(
(
XMultiServiceFactory
)
tParam
.
getMSF
());
final
XShape
oShape
=
SOF
.
createShape
(
xDrawDoc
,
3000
,
4500
,
15000
,
1000
,
"Rectangle"
);
...
...
@@ -127,7 +128,7 @@ public class AccessibleShape extends TestCase {
AccessibilityTools
at
=
new
AccessibilityTools
();
XWindow
xWindow
=
at
.
getCurrentWindow
(
tParam
.
getMSF
(),
aModel
);
XWindow
xWindow
=
at
.
getCurrentWindow
(
(
XMultiServiceFactory
)
tParam
.
getMSF
(),
aModel
);
XAccessible
xRoot
=
at
.
getAccessibleObject
(
xWindow
);
//at.printAccessibleTree(log,xRoot);
...
...
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