Rogue Wave Views Foundation Package API Reference Guide |
Rogue Wave Views Documentation Home |
Node factory used when parsing XML documents. More...
#include <ilog/xml.h>
Public Member Functions | |
IlXmlAttributeI * | createAttribute (IlXmlElementI *element, char *name, char *value) const |
Creates an XML attribute. More... | |
IlXmlCDataI * | createCData () const |
Creates a CData node. More... | |
IlXmlCharRefI * | createCharRef () const |
Creates an XML CharRef node. More... | |
IlXmlCommentI * | createComment () const |
Creates an XML comment node. More... | |
IlXmlElementI * | createElement (char *tag) const |
Creates an XML element. More... | |
IlXmlPII * | createPI () const |
Creates a PI node. More... | |
IlXmlTextI * | createText () const |
Creates an XML text node. More... | |
Node factory used when parsing XML documents.
Library: ilog
Instances of IlXmlNodeFactory
are used by instances of IlXmlDocumentI
when reading XML data that does not need streaming (that is, XML entities are built and kept in memory).
As the reading goes along, XML entities are parsed from the XML data, and XML entities need to be created to hold the data that they represent. The node factory allows you to specify what XML node types you want to be able to manipulate, and let you add your own, application specific, data to the classes that represent the XML tree.
IlXmlAttributeI* IlXmlNodeFactory::createAttribute | ( | IlXmlElementI * | element, |
char * | name, | ||
char * | value | ||
) | const |
Creates an XML attribute.
This method should return an instance of a new attribute that will be added to element.
element | The element where this attribute will be added. |
name | The name of this attribute. This method must store this string in the attribute, or delete it if it creates an attribute that does not need the name. |
value | The value of this attribute. This method must store this string in the attribute, or delete it if it creates an attribute that does not need the value. |
0
. IlXmlCDataI* IlXmlNodeFactory::createCData | ( | ) | const |
Creates a CData node.
0
. IlXmlCharRefI* IlXmlNodeFactory::createCharRef | ( | ) | const |
Creates an XML CharRef
node.
CharRef
node. The default implementation returns 0
. IlXmlCommentI* IlXmlNodeFactory::createComment | ( | ) | const |
Creates an XML comment node.
0
. IlXmlElementI* IlXmlNodeFactory::createElement | ( | char * | tag | ) | const |
Creates an XML element.
tag | The tag of the new element. |
0
. IlXmlPII* IlXmlNodeFactory::createPI | ( | ) | const |
Creates a PI node.
0
. IlXmlTextI* IlXmlNodeFactory::createText | ( | ) | const |
Creates an XML text node.
0
. © Copyright 2016, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.