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
8c0b019b
Kaydet (Commit)
8c0b019b
authored
May 03, 2011
tarafından
Muthu Subramanian
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adding a public getNamespaceURL method to fastparser.
üst
10aa3ef1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
fastparser.cxx
sax/source/fastparser/fastparser.cxx
+13
-0
fastparser.hxx
sax/source/fastparser/fastparser.hxx
+1
-0
No files found.
sax/source/fastparser/fastparser.cxx
Dosyayı görüntüle @
8c0b019b
...
@@ -525,6 +525,19 @@ void SAL_CALL FastSaxParser::registerNamespace( const OUString& NamespaceURL, sa
...
@@ -525,6 +525,19 @@ void SAL_CALL FastSaxParser::registerNamespace( const OUString& NamespaceURL, sa
throw
IllegalArgumentException
();
throw
IllegalArgumentException
();
}
}
OUString
SAL_CALL
FastSaxParser
::
getNamespaceURL
(
const
OUString
&
rPrefix
)
throw
(
IllegalArgumentException
,
RuntimeException
)
{
try
{
return
GetNamespaceURL
(
OUStringToOString
(
rPrefix
,
RTL_TEXTENCODING_UTF8
)
);
}
catch
(
Exception
)
{
;
}
throw
IllegalArgumentException
();
}
void
FastSaxParser
::
setErrorHandler
(
const
Reference
<
XErrorHandler
>
&
Handler
)
throw
(
RuntimeException
)
void
FastSaxParser
::
setErrorHandler
(
const
Reference
<
XErrorHandler
>
&
Handler
)
throw
(
RuntimeException
)
{
{
maData
.
mxErrorHandler
=
Handler
;
maData
.
mxErrorHandler
=
Handler
;
...
...
sax/source/fastparser/fastparser.hxx
Dosyayı görüntüle @
8c0b019b
...
@@ -112,6 +112,7 @@ public:
...
@@ -112,6 +112,7 @@ public:
virtual
void
SAL_CALL
setFastDocumentHandler
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XFastDocumentHandler
>&
Handler
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setFastDocumentHandler
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XFastDocumentHandler
>&
Handler
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setTokenHandler
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XFastTokenHandler
>&
Handler
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setTokenHandler
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XFastTokenHandler
>&
Handler
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
registerNamespace
(
const
::
rtl
::
OUString
&
NamespaceURL
,
sal_Int32
NamespaceToken
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
registerNamespace
(
const
::
rtl
::
OUString
&
NamespaceURL
,
sal_Int32
NamespaceToken
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
::
rtl
::
OUString
SAL_CALL
getNamespaceURL
(
const
::
rtl
::
OUString
&
rPrefix
)
throw
(
::
com
::
sun
::
star
::
lang
::
IllegalArgumentException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setErrorHandler
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XErrorHandler
>&
Handler
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setErrorHandler
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XErrorHandler
>&
Handler
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setEntityResolver
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XEntityResolver
>&
Resolver
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setEntityResolver
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XEntityResolver
>&
Resolver
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setLocale
(
const
::
com
::
sun
::
star
::
lang
::
Locale
&
rLocale
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
virtual
void
SAL_CALL
setLocale
(
const
::
com
::
sun
::
star
::
lang
::
Locale
&
rLocale
)
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
...
...
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