INTEGRATION: CWS custommeta (1.5.42); FILE MERGED
2008/02/01 10:36:26 mst 1.5.42.3: RESYNC: (1.6-1.7); FILE MERGED 2007/12/10 10:28:17 mst 1.5.42.2: RESYNC: (1.5-1.6); FILE MERGED 2007/12/07 14:05:56 mst 1.5.42.1: - unoxml/source/dom/document.{hxx,cxx}: implement interface css::xml::sax::XSAXSerializable - unoxml/source/dom/*.{hxx,cxx}: add virtual method saxify() on all subclasses of CNode add missing implementations of getLocalName()
This commit is contained in:
parent
9f892eb3a4
commit
60046cfbd9
1 changed files with 7 additions and 7 deletions
|
@ -4,9 +4,9 @@
|
|||
*
|
||||
* $RCSfile: element.hxx,v $
|
||||
*
|
||||
* $Revision: 1.7 $
|
||||
* $Revision: 1.8 $
|
||||
*
|
||||
* last change: $Author: vg $ $Date: 2007-12-06 11:00:04 $
|
||||
* last change: $Author: obo $ $Date: 2008-02-26 14:48:58 $
|
||||
*
|
||||
* The Contents of this file are made available subject to
|
||||
* the terms of GNU Lesser General Public License Version 2.1.
|
||||
|
@ -62,6 +62,9 @@ namespace DOM
|
|||
|
||||
public:
|
||||
|
||||
virtual void SAL_CALL saxify(
|
||||
const Reference< XDocumentHandler >& i_xHandler);
|
||||
|
||||
/**
|
||||
Retrieves an attribute value by name.
|
||||
*/
|
||||
|
@ -179,6 +182,8 @@ namespace DOM
|
|||
throw (RuntimeException);
|
||||
virtual Reference< XNamedNodeMap > SAL_CALL getAttributes()
|
||||
throw (RuntimeException);
|
||||
virtual OUString SAL_CALL getLocalName()
|
||||
throw (RuntimeException);
|
||||
|
||||
// resolve uno inheritance problems...
|
||||
// --- delegation for XNde base.
|
||||
|
@ -207,11 +212,6 @@ namespace DOM
|
|||
{
|
||||
return CNode::getLastChild();
|
||||
}
|
||||
virtual OUString SAL_CALL getLocalName()
|
||||
throw (RuntimeException)
|
||||
{
|
||||
return CNode::getLocalName();
|
||||
}
|
||||
virtual OUString SAL_CALL getNamespaceURI()
|
||||
throw (RuntimeException)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue