Isis 3 Programmer Reference
|
Public Member Functions | |
XmlHandler (Directory *directory) | |
This function sets the Directory pointer for the Directory::XmlHandler class. More... | |
~XmlHandler () | |
The Destructor for Directory::XmlHandler. More... | |
virtual bool | startElement (const QString &namespaceURI, const QString &localName, const QString &qName, const QXmlAttributes &atts) |
The XML reader invokes this method at the start of every element in the XML document. More... | |
virtual void | setReader (XmlStackedHandlerReader *) |
void | switchToNewHandler (XmlStackedHandler *nextHandler) |
Switch to a new content handler and continue processing using the new handler. More... | |
virtual bool | endElement (const QString &namespaceURI, const QString &localName, const QString &qName) |
Protected Member Functions | |
XmlStackedHandlerReader * | reader () |
const XmlStackedHandlerReader * | reader () const |
bool | fatalError (const QXmlParseException &exception) |
Private Member Functions | |
Q_DISABLE_COPY (XmlHandler) | |
Private Attributes | |
Directory * | m_directory |
Pointer to a Directory which is set by the XmlHandler class. More... | |
Definition at line 459 of file Directory.h.
Isis::Directory::XmlHandler::XmlHandler | ( | Directory * | directory | ) |
This function sets the Directory pointer for the Directory::XmlHandler class.
directory | The new directory we are setting XmlHandler's member variable to. |
Definition at line 1592 of file Directory.cpp.
References m_directory.
Isis::Directory::XmlHandler::~XmlHandler | ( | ) |
The Destructor for Directory::XmlHandler.
Definition at line 1600 of file Directory.cpp.
|
virtual |
The XML reader invokes this method at the start of every element in the XML document.
This method expects <footprint2DView> and <imageFileList> elements. A quick example using this function: startElement("xsl","stylesheet","xsl:stylesheet",attributes)
namespaceURI | The Uniform Resource Identifier of the element's namespace |
localName | The local name string |
qName | The XML qualified string (or empty, if QNames are not available). |
atts | The XML attributes attached to each element |
Reimplemented from Isis::XmlStackedHandler.
Definition at line 1619 of file Directory.cpp.
|
inherited |
Switch to a new content handler and continue processing using the new handler.
Definition at line 32 of file XmlStackedHandler.cpp.
Referenced by Isis::XmlStackedHandlerReader::pushContentHandler().
|
private |
Pointer to a Directory which is set by the XmlHandler class.
Definition at line 470 of file Directory.h.
Referenced by XmlHandler().