groovy.xml
Class MarkupBuilder

java.lang.Object
  extended by groovy.lang.GroovyObjectSupport
      extended by groovy.util.BuilderSupport
          extended by groovy.xml.MarkupBuilder
All Implemented Interfaces:
GroovyObject

public class MarkupBuilder
extends BuilderSupport

A helper class for creating XML or HTML markup

Version:
$Revision: 4350 $
Author:
James Strachan, Stefan Matthias Aust, Scott Stirling

Constructor Summary
MarkupBuilder()
           
MarkupBuilder(IndentPrinter out)
           
MarkupBuilder(PrintWriter writer)
           
MarkupBuilder(Writer writer)
           
 
Method Summary
protected  Object createNode(Object name)
           
protected  Object createNode(Object name, Map attributes)
           
protected  Object createNode(Object name, Map attributes, Object value)
           
protected  Object createNode(Object name, Object value)
           
 boolean getDoubleQuotes()
          Returns true if attribute values are output with double quotes; false if single quotes are used.
protected  Object getName(String methodName)
          A hook to allow names to be converted into some other object such as a QName in XML or ObjectName in JMX
protected  IndentPrinter getPrinter()
           
protected  void nodeCompleted(Object parent, Object node)
          A hook to allow nodes to be processed once they have had all of their children applied
protected  void print(Object node)
           
 void setDoubleQuotes(boolean useDoubleQuotes)
          Sets whether the builder outputs attribute values in double quotes or single quotes.
protected  void setParent(Object parent, Object child)
           
protected  String transformValue(String value)
          Deprecated.  
 
Methods inherited from class groovy.util.BuilderSupport
doInvokeMethod, getCurrent, invokeMethod, invokeMethod, setClosureDelegate, setCurrent
 
Methods inherited from class groovy.lang.GroovyObjectSupport
getMetaClass, getProperty, setMetaClass, setProperty
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MarkupBuilder

public MarkupBuilder()

MarkupBuilder

public MarkupBuilder(PrintWriter writer)

MarkupBuilder

public MarkupBuilder(Writer writer)

MarkupBuilder

public MarkupBuilder(IndentPrinter out)
Method Detail

getDoubleQuotes

public boolean getDoubleQuotes()
Returns true if attribute values are output with double quotes; false if single quotes are used. By default, single quotes are used.


setDoubleQuotes

public void setDoubleQuotes(boolean useDoubleQuotes)
Sets whether the builder outputs attribute values in double quotes or single quotes.

Parameters:
useDoubleQuotes - If this parameter is true, double quotes are used; otherwise, single quotes are.

getPrinter

protected IndentPrinter getPrinter()

setParent

protected void setParent(Object parent,
                         Object child)
Specified by:
setParent in class BuilderSupport

createNode

protected Object createNode(Object name)
Specified by:
createNode in class BuilderSupport

createNode

protected Object createNode(Object name,
                            Object value)
Specified by:
createNode in class BuilderSupport

createNode

protected Object createNode(Object name,
                            Map attributes,
                            Object value)
Specified by:
createNode in class BuilderSupport

createNode

protected Object createNode(Object name,
                            Map attributes)
Specified by:
createNode in class BuilderSupport

nodeCompleted

protected void nodeCompleted(Object parent,
                             Object node)
Description copied from class: BuilderSupport
A hook to allow nodes to be processed once they have had all of their children applied

Overrides:
nodeCompleted in class BuilderSupport

print

protected void print(Object node)

getName

protected Object getName(String methodName)
Description copied from class: BuilderSupport
A hook to allow names to be converted into some other object such as a QName in XML or ObjectName in JMX

Overrides:
getName in class BuilderSupport

transformValue

protected String transformValue(String value)
Deprecated. 

Returns a String with special XML characters escaped as entities so that output XML is valid. Escapes the following characters as corresponding entities:

Parameters:
value - to be searched and replaced for XML special characters.
Returns:
value with XML characters escaped
See Also:
escapeXmlValue(String, boolean)


Copyright © 2003-2008 The Codehaus. All Rights Reserved.