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
33c2585c
Kaydet (Commit)
33c2585c
authored
Kas 16, 2000
tarafından
Frank Schönheit
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
new implementation for allowing registry key wrapper for NULL value nodes
üst
0762f010
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
7 deletions
+25
-7
cfgregistrykey.cxx
configmgr/source/registry/cfgregistrykey.cxx
+0
-0
cfgregistrykey.hxx
configmgr/source/registry/cfgregistrykey.hxx
+25
-7
No files found.
configmgr/source/registry/cfgregistrykey.cxx
Dosyayı görüntüle @
33c2585c
This diff is collapsed.
Click to expand it.
configmgr/source/registry/cfgregistrykey.hxx
Dosyayı görüntüle @
33c2585c
...
@@ -2,9 +2,9 @@
...
@@ -2,9 +2,9 @@
*
*
* $RCSfile: cfgregistrykey.hxx,v $
* $RCSfile: cfgregistrykey.hxx,v $
*
*
* $Revision: 1.
1.1.1
$
* $Revision: 1.
2
$
*
*
* last change: $Author:
hr $ $Date: 2000-09-18 16:13:41
$
* last change: $Author:
fs $ $Date: 2000-11-16 08:12:14
$
*
*
* The Contents of this file are made available subject to the terms of
* The Contents of this file are made available subject to the terms of
* either of the following licenses
* either of the following licenses
...
@@ -236,14 +236,32 @@ protected:
...
@@ -236,14 +236,32 @@ protected:
*/
*/
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
registry
::
XRegistryKey
>
OConfigurationRegistryKey
::
implGetKey
(
const
::
rtl
::
OUString
&
_rKeyName
)
throw
(
::
com
::
sun
::
star
::
registry
::
InvalidRegistryException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
registry
::
XRegistryKey
>
OConfigurationRegistryKey
::
implGetKey
(
const
::
rtl
::
OUString
&
_rKeyName
)
throw
(
::
com
::
sun
::
star
::
registry
::
InvalidRegistryException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
/** check the given (relative) key name syntactically. In particular, this means that no checks are made if a node
/** check the given (relative) key name syntactically.
with the given name exists or something like that ...
<BR>
<p>In particular, this means that no checks are made if a node with the given name exists or something like
that ...<br/>
In addition, the given name will be normalized. Basically, this means that it does not contain trailing slashes.
In addition, the given name will be normalized. Basically, this means that it does not contain trailing slashes.
@throws InvalidRegistryException if the name is not relative (i.e. if it starts with an slash)
</p>
@throws InvalidRegistryException if the name is empty or consists of slashes only
@throws InvalidRegistryException
if the name is not relative (i.e. if it starts with an slash)
@throws InvalidRegistryException
if the name is empty or consists of slashes only
*/
*/
void
checkRelativeKeyName
(
::
rtl
::
OUString
&
_rKeyName
)
throw
(
::
com
::
sun
::
star
::
registry
::
InvalidRegistryException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
void
checkRelativeKeyName
(
::
rtl
::
OUString
&
_rKeyName
)
throw
(
::
com
::
sun
::
star
::
registry
::
InvalidRegistryException
,
::
com
::
sun
::
star
::
uno
::
RuntimeException
);
/** get a default value for a leaf which is originally NULL
<p>The configuration leaf nodes are allowed to be NULL, but we no no chance to wrap this here (the registry
interface does not allow NULL values). So in case we encounter such a NULL leaf, we create a default value for
it, dependent on the type of the leaf (which can be retrieved from it's parent).</p>
@return
an <type scope="com::sun::star::uno">Any</type> representing a default for the node value type. If the
return value is still VOID, the node has an unsupported type (e.g. double)
@throws com::sun::star::registry::InvalidRegistryException
if the parent node specified by <arg>_rParentName</arg> did not provide type information for the node
*/
::
com
::
sun
::
star
::
uno
::
Any
getEmptyLeafDefault
(
const
::
rtl
::
OUString
&
_rParentName
,
const
::
rtl
::
OUString
&
_rElementLocalName
);
};
};
...
...
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