arabica/include/DOM/Simple/EntityReferenceImpl.hpp

72 lines
2.2 KiB
C++
Raw Normal View History

2002-06-21 13:16:28 +02:00
#ifndef JEZUK_SimpleDOM_ENTITYREFERENCEIMPL_H
#define JEZUK_SimpleDOM_ENTITYREFERENCEIMPL_H
2007-09-05 00:55:47 +02:00
#include <DOM/EntityReference.hpp>
2002-06-21 13:16:28 +02:00
namespace SimpleDOM
{
template<class stringT, class string_adaptorT>
class EntityReferenceImpl : public DOM::EntityReference_impl<stringT>,
public NodeImplWithChildren<stringT, string_adaptorT>
{
typedef NodeImplWithChildren<stringT, string_adaptorT> NodeT;
2002-06-21 13:16:28 +02:00
public:
EntityReferenceImpl(DocumentImpl<stringT, string_adaptorT>* ownerDoc, const stringT name) :
DOM::EntityReference_impl<stringT>(),
NodeImplWithChildren<stringT, string_adaptorT>(ownerDoc),
name_(name)
{
} // EntityReferenceImpl
virtual ~EntityReferenceImpl() { }
///////////////////////////////////////////////////////
// DOM::Node methods
virtual DOM::Node_base::Type getNodeType() const
{
return DOM::Node_base::ENTITY_REFERENCE_NODE;
} // getNodeType
2005-12-09 15:09:32 +01:00
virtual const stringT& getNodeName() const
2002-06-21 13:16:28 +02:00
{
return name_;
} // getNodeName
virtual void setNodeValue(const stringT& x)
{
throw DOM::DOMException(DOM::DOMException::NO_MODIFICATION_ALLOWED_ERR);
} // setNodeValue
virtual DOM::Node_impl<stringT>* cloneNode(bool deep) const
{
return NodeT::ownerDoc_->createEntityReference(name_);
2002-06-21 13:16:28 +02:00
} // cloneNode
//////////////////////////////////////////////////////
// this implementation
private:
virtual void checkChildType(DOM::Node_impl<stringT>* child)
{
if(NodeT::readOnly_)
2002-06-21 13:16:28 +02:00
throw DOM::DOMException(DOM::DOMException::NO_MODIFICATION_ALLOWED_ERR);
2002-11-23 21:03:54 +01:00
typename DOM::Node<stringT>::Type type = child->getNodeType();
2002-06-21 13:16:28 +02:00
if((type != DOM::Node<stringT>::ELEMENT_NODE) &&
(type != DOM::Node<stringT>::PROCESSING_INSTRUCTION_NODE) &&
(type != DOM::Node<stringT>::COMMENT_NODE) &&
(type != DOM::Node<stringT>::TEXT_NODE) &&
(type != DOM::Node<stringT>::CDATA_SECTION_NODE) &&
(type != DOM::Node<stringT>::ENTITY_REFERENCE_NODE))
throw DOM::DOMException(DOM::DOMException::HIERARCHY_REQUEST_ERR);
} // checkChildType
stringT name_;
}; // class EntityReferenceImpl
} // namespace SAX2DOM
#endif