dbertoni 00/12/30 09:56:20
Modified: c/src/XercesParserLiaison XercesDOMSupport.cpp
XercesDOMSupport.hpp XercesParserLiaison.cpp
XercesParserLiaison.hpp
Log:
Removed unused functions for expanding element and attribute names.
Revision Changes Path
1.5 +0 -16 xml-xalan/c/src/XercesParserLiaison/XercesDOMSupport.cpp
Index: XercesDOMSupport.cpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XercesParserLiaison/XercesDOMSupport.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XercesDOMSupport.cpp 2000/12/15 23:25:57 1.4
+++ XercesDOMSupport.cpp 2000/12/30 17:56:19 1.5
@@ -104,22 +104,6 @@
const XalanDOMString&
-XercesDOMSupport::getExpandedElementName(const XalanElement& elem) const
-{
- return m_domSupportDefault.getExpandedElementName(elem);
-}
-
-
-
-const XalanDOMString&
-XercesDOMSupport::getExpandedAttributeName(const XalanAttr& attr)
const
-{
- return m_domSupportDefault.getExpandedAttributeName(attr);
-}
-
-
-
-const XalanDOMString&
XercesDOMSupport::getUnparsedEntityURI(
const XalanDOMString& theName,
const XalanDocument& theDocument) const
1.4 +0 -18 xml-xalan/c/src/XercesParserLiaison/XercesDOMSupport.hpp
Index: XercesDOMSupport.hpp
===================================================================
RCS file: /home/cvs/xml-xalan/c/src/XercesParserLiaison/XercesDOMSupport.hpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- XercesDOMSupport.hpp 2000/12/15 23:25:57 1.3
+++ XercesDOMSupport.hpp 2000/12/30 17:56:19 1.4
@@ -94,24 +94,6 @@
virtual const XalanDOMString&
getNamespaceOfNode(const XalanNode& theNode) const;
- /**
- * Retrieves expanded name of a DOM element, including namespace
- *
- * @param elem DOM element queried
- * @return expanded name corresponding to 'elem'
- */
- virtual const XalanDOMString&
- getExpandedElementName(const XalanElement& elem) const;
-
- /**
- * Retrieves expanded name of a DOM attribute, including namespace
- *
- * @param attr DOM attribute queried
- * @return expanded name corresponding to 'attr'
- */
- virtual const XalanDOMString&
- getExpandedAttributeName(const XalanAttr& attr) const;
-
virtual const XalanDOMString&
getUnparsedEntityURI(
const XalanDOMString& theName,
1.25 +0 -22
xml-xalan/c/src/XercesParserLiaison/XercesParserLiaison.cpp
Index: XercesParserLiaison.cpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/XercesParserLiaison/XercesParserLiaison.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- XercesParserLiaison.cpp 2000/12/07 17:03:32 1.24
+++ XercesParserLiaison.cpp 2000/12/30 17:56:19 1.25
@@ -223,28 +223,6 @@
-/**
- * Returns the element name with the namespace expanded.
- */
-const XalanDOMString&
-XercesParserLiaison::getExpandedElementName(const XalanElement&
elem) const
-{
- return m_DOMSupport.getExpandedElementName(elem);
-}
-
-
-
-/**
- * Returns the attribute name with the namespace expanded.
- */
-const XalanDOMString&
-XercesParserLiaison::getExpandedAttributeName(const XalanAttr& attr)
const
-{
- return m_DOMSupport.getExpandedAttributeName(attr);
-}
-
-
-
void
XercesParserLiaison::setSpecialCharacters(const XalanDOMString& str)
{
1.19 +0 -6
xml-xalan/c/src/XercesParserLiaison/XercesParserLiaison.hpp
Index: XercesParserLiaison.hpp
===================================================================
RCS file:
/home/cvs/xml-xalan/c/src/XercesParserLiaison/XercesParserLiaison.hpp,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- XercesParserLiaison.hpp 2000/12/07 17:03:32 1.18
+++ XercesParserLiaison.hpp 2000/12/30 17:56:19 1.19
@@ -132,12 +132,6 @@
virtual XalanDocument*
getDOMFactory();
- virtual const XalanDOMString&
- getExpandedElementName(const XalanElement& elem) const;
-
- virtual const XalanDOMString&
- getExpandedAttributeName(const XalanAttr& attr) const;
-
virtual void
setSpecialCharacters(const XalanDOMString& str);