Interface PrivateData
-
- All Known Implementing Classes:
Bookmarks
,DefaultPrivateData
public interface PrivateData
Interface to represent private data. Each private data chunk is an XML sub-document with a root element name and namespace.- See Also:
PrivateDataManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getElementName()
Returns the root element name.String
getNamespace()
Returns the root element XML namespace.CharSequence
toXML()
Returns the XML reppresentation of the PrivateData.
-
-
-
Method Detail
-
getElementName
String getElementName()
Returns the root element name.- Returns:
- the element name.
-
getNamespace
String getNamespace()
Returns the root element XML namespace.- Returns:
- the namespace.
-
toXML
CharSequence toXML()
Returns the XML reppresentation of the PrivateData.- Returns:
- the private data as XML.
-
-