com.guiseframework.platform
Interface XMLDepictContext

All Superinterfaces:
DepictContext, com.globalmentor.beans.PropertyBindable, TextDepictContext
All Known Subinterfaces:
WebDepictContext, XHTMLDepictContext
All Known Implementing Classes:
AbstractWebDepictContext, AbstractXHTMLDepictContext, AbstractXMLDepictContext, HTTPServletWebDepictContext

public interface XMLDepictContext
extends TextDepictContext

Encapsulation of text/xml information related to the current depiction.

Author:
Garret Wilson

Nested Class Summary
static class XMLDepictContext.ElementState
          The state of rendering for a particular element.
 
Method Summary
 java.lang.String getQualifiedName(java.net.URI namespaceURI, java.lang.String localName)
          Retrieves the qualified name of the given namespace and local name.
 void writeAttribute(java.net.URI namespaceURI, java.lang.String localName, java.lang.String value)
          Writes an attribute of an XML element.
 void writeComment(java.lang.String comment)
          Writes an XML comment.
 void writeCommentClose()
          Writes the ending part of an XML comment.
 void writeCommentOpen()
          Writes the beginning part of an XML comment.
 void writeDocType(boolean writeXMLDeclaration, java.net.URI namespaceURI, java.lang.String localName, java.lang.String publicID)
          Writes a doctype along with an optional an XML declaration to the string builder and sets the output content type.
 void writeDocType(boolean writeXMLDeclaration, java.net.URI namespaceURI, java.lang.String localName, java.lang.String publicID, java.lang.String systemID, com.globalmentor.net.ContentType contentType)
          Writes a doctype along with an optional XML declaration to the string builder and sets the output content type.
 XMLDepictContext.ElementState writeElementBegin(java.net.URI namespaceURI, java.lang.String localName)
          Begins an XML element that will not be an empty element, even if it has no content.
 XMLDepictContext.ElementState writeElementBegin(java.net.URI namespaceURI, java.lang.String localName, boolean isEmptyElementAllowed)
          Begins an XML element, specifying whether an empty element is allowed.
 XMLDepictContext.ElementState writeElementEnd(java.net.URI namespaceURI, java.lang.String localName)
          Ends an XML element.
 
Methods inherited from interface com.guiseframework.platform.TextDepictContext
clearDepictText, getDepictStringBuilder, getDepictText, getIndentLevel, getOutputCharacterEncoding, getOutputContentType, indent, indent, isFormatted, setIndentLevel, setOutputContentType, unindent, write, write, writeIndent, writeLiteral
 
Methods inherited from interface com.guiseframework.platform.DepictContext
getDepictionURI, getDepictionURI, getDepictionURI, getDestination, getPlatform, getSession, getStyles
 
Methods inherited from interface com.globalmentor.beans.PropertyBindable
addPropertyChangeListener, addPropertyChangeListener, getPropertyChangeListeners, getPropertyChangeListeners, hasPropertyChangeListeners, removePropertyChangeListener, removePropertyChangeListener
 

Method Detail

getQualifiedName

java.lang.String getQualifiedName(java.net.URI namespaceURI,
                                  java.lang.String localName)
Retrieves the qualified name of the given namespace and local name. If the namespace URI is not recognized, a new prefix will be generated for that namespace This method therefore works for attributes in the null namespace, but cannot work for elements in the null namespace because this would be ambiguous with elements in the the XHTML namespace.

Parameters:
namespaceURI - The URI of the XML namespace, or null if there is no namespace and there should be no prefix.
localName - The local name of the element or attribute with no prefix.
Returns:
The XML qualified name.

writeDocType

void writeDocType(boolean writeXMLDeclaration,
                  java.net.URI namespaceURI,
                  java.lang.String localName,
                  java.lang.String publicID)
                  throws java.io.IOException
Writes a doctype along with an optional an XML declaration to the string builder and sets the output content type. The system ID and content type will be determined from the given public ID.

Parameters:
writeXMLDeclaration - Whether an XML declaration should be included before the doctype.
namespaceURI - The URI of the XML namespace of document element, or null if there is no namespace.
localName - The local name of the document element with no prefix.
publicID - The XML declaration public ID.
Throws:
java.lang.NullPointerException - if the given public ID is null.
java.lang.IllegalArgumentException - if a system ID could not be determined from the given public ID.
java.io.IOException

writeDocType

void writeDocType(boolean writeXMLDeclaration,
                  java.net.URI namespaceURI,
                  java.lang.String localName,
                  java.lang.String publicID,
                  java.lang.String systemID,
                  com.globalmentor.net.ContentType contentType)
                  throws java.io.IOException
Writes a doctype along with an optional XML declaration to the string builder and sets the output content type.

Parameters:
writeXMLDeclaration - Whether an XML declaration should be included before the doctype.
namespaceURI - The URI of the XML namespace of document element, or null if there is no namespace.
localName - The local name of the document element with no prefix.
publicID - The XML declaration public ID, or null if none is used.
systemID - The XML declaration system ID, or null if one can be determined from the given public ID.
contentType - The specific XML content type, or null if a content type should be determiend from the public ID; otherwise will default to "text/xml".
Throws:
java.lang.IllegalArgumentException - if a system ID was not provided or one could not be determined from the given public ID.
java.io.IOException

writeElementBegin

XMLDepictContext.ElementState writeElementBegin(java.net.URI namespaceURI,
                                                java.lang.String localName)
                                                throws java.io.IOException
Begins an XML element that will not be an empty element, even if it has no content.

Parameters:
namespaceURI - The URI of the XML namespace of the element, or null if there is no namespace.
localName - The local name of the element with no prefix.
Returns:
The state of the element being written.
Throws:
java.io.IOException - if there is an error writing the information.

writeElementBegin

XMLDepictContext.ElementState writeElementBegin(java.net.URI namespaceURI,
                                                java.lang.String localName,
                                                boolean isEmptyElementAllowed)
                                                throws java.io.IOException
Begins an XML element, specifying whether an empty element is allowed.

Parameters:
namespaceURI - The URI of the XML namespace of the element, or null if there is no namespace.
localName - The local name of the element with no prefix.
isEmptyElementAllowed - Whether an empty element can be created if there is no content.
Returns:
The state of the element being written.
Throws:
java.io.IOException - if there is an error writing the information.

writeElementEnd

XMLDepictContext.ElementState writeElementEnd(java.net.URI namespaceURI,
                                              java.lang.String localName)
                                              throws java.io.IOException
Ends an XML element.

Parameters:
namespaceURI - The URI of the XML namespace of the element, or null if there is no namespace.
localName - The local name of the element with no prefix.
Returns:
The state of the element being written.
Throws:
java.util.NoSuchElementException - if the element state stack is empty.
java.lang.IllegalStateException - if the given namespace URI and/or local name does not match that of the currently open element.
java.io.IOException - if there is an error writing the information.

writeAttribute

void writeAttribute(java.net.URI namespaceURI,
                    java.lang.String localName,
                    java.lang.String value)
                    throws java.io.IOException
Writes an attribute of an XML element. The attribute value will be properly encoded for XML.

Parameters:
namespaceURI - The URI of the XML namespace of the attribute, or null if there is no namespace.
localName - The local name of the attribute with no prefix.
value - The unencoded value of the attribute.
Throws:
java.util.NoSuchElementException - if the element state stack is empty.
java.io.IOException - if there is an error writing the information.

writeCommentOpen

void writeCommentOpen()
                      throws java.io.IOException
Writes the beginning part of an XML comment.

Throws:
java.lang.IllegalStateException - if the comment has already been opened but not closed.
java.io.IOException - if there is an error writing the information.
See Also:
writeCommentClose()

writeCommentClose

void writeCommentClose()
                       throws java.io.IOException
Writes the ending part of an XML comment.

Throws:
java.lang.IllegalStateException - if the comment has not been opened or has already been closed.
java.io.IOException - if there is an error writing the information.
See Also:
writeCommentOpen()

writeComment

void writeComment(java.lang.String comment)
                  throws java.io.IOException
Writes an XML comment. This method ensures that any open beginning tag has been closed.

Parameters:
comment - The comment to write.
Throws:
java.io.IOException - if there is an error writing the information.
See Also:
writeCommentOpen(), writeCommentClose()


Copyright © 2005-2010 GlobalMentor, Inc. All Rights Reserved.