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
7da89d9f
Kaydet (Commit)
7da89d9f
authored
Nis 11, 2003
tarafından
Vladimir Glazounov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
INTEGRATION: CWS vcl07 (1.3.2); FILE ADDED
2003/04/08 14:28:33 obr 1.3.2.1: re-added accessibility workbench
üst
a8a2b889
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
0 deletions
+42
-0
AccessibleHypertextHandler.java
toolkit/test/accessibility/AccessibleHypertextHandler.java
+42
-0
No files found.
toolkit/test/accessibility/AccessibleHypertextHandler.java
0 → 100644
Dosyayı görüntüle @
7da89d9f
import
com.sun.star.uno.UnoRuntime
;
import
drafts.com.sun.star.accessibility.XAccessibleContext
;
import
drafts.com.sun.star.accessibility.XAccessibleHypertext
;
class
AccessibleHypertextHandler
extends
AccessibleTreeHandler
{
public
NodeHandler
createHandler
(
XAccessibleContext
xContext
)
{
XAccessibleHypertext
xText
=
(
XAccessibleHypertext
)
UnoRuntime
.
queryInterface
(
XAccessibleHypertext
.
class
,
xContext
);
if
(
xText
!=
null
)
return
new
AccessibleHypertextHandler
(
xText
);
else
return
null
;
}
public
AccessibleHypertextHandler
()
{
}
public
AccessibleHypertextHandler
(
XAccessibleHypertext
xText
)
{
if
(
xText
!=
null
)
maChildList
.
setSize
(
1
);
}
protected
static
XAccessibleHypertext
getHypertext
(
AccTreeNode
aNode
)
{
XAccessibleHypertext
xHypertext
=
(
XAccessibleHypertext
)
UnoRuntime
.
queryInterface
(
XAccessibleHypertext
.
class
,
aNode
.
getContext
());
return
xHypertext
;
}
public
AccessibleTreeNode
getChild
(
AccessibleTreeNode
aParent
,
int
nIndex
)
{
return
new
StringNode
(
"interface XAccessibleHypertext is supported"
,
aParent
);
}
}
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