Skip to content
Snippets Groups Projects
Commit ca4524a0 authored by Unknown (aruna1)'s avatar Unknown (aruna1)
Browse files

Removed length() and hasChildNode() functions. Fine to call the parent's method.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@172399 13f79535-47bb-0310-9956-ffa450edef68
parent 37c493a7
No related branches found
No related tags found
No related merge requests found
......@@ -168,64 +168,6 @@ short EntityReferenceImpl::getNodeType() {
};
/**
* Query the number of children in the entity definition.
* (A bit more work than asking locally, but may be able to avoid
* or defer building the clone subtree.)
*
* @return org.w3c.dom.NodeList
*/
unsigned int EntityReferenceImpl::getLength()
{
unsigned int length = ChildAndParentNode::getLength();
#if (0) // Till we add entity nodes to the doc root element.
DocumentTypeImpl *doctype;
NamedNodeMapImpl *entities;
EntityImpl *entDef;
if (null != (doctype = ownerDocument->getDoctype()) &&
null != (entities = doctype->getEntities()) &&
null != (entDef = (EntityImpl *)entities->getNamedItem(name))
)
length=entDef->getChildNodes()->getLength();
#endif
return length;
}
/**
* Query the presence of children in the entity definition.
* (A bit more work than asking locally, but may be able to avoid
* or defer building the clone subtree.)
*
* @return boolean
*/
bool EntityReferenceImpl::hasChildNodes()
{
#if 0
// defer this query for now.
//There's lot of work to be done here before it can return the actual value.
bool haskids=false;
DocumentTypeImpl *doctype;
NamedNodeMapImpl *entities;
EntityImpl *entDef;
if (null != (doctype = ownerDocument->getDoctype()) &&
null != (entities = doctype->getEntities()) &&
null != (entDef = (EntityImpl *)entities->getNamedItem(name))
)
haskids=entDef->hasChildNodes();
return haskids;
#endif
return firstChild!=null;
}
bool EntityReferenceImpl::isEntityReference()
{
return true;
......
......@@ -86,8 +86,6 @@ public:
virtual NodeImpl * cloneNode(bool deep);
virtual DOMString getNodeName();
virtual short getNodeType();
virtual unsigned int getLength();
virtual bool hasChildNodes();
virtual bool isEntityReference();
virtual void setNodeValue(const DOMString &);
virtual void setReadOnly(bool readOnly,bool deep);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment