Uses of Class
org.apache.commons.jelly.XMLOutput
Packages that use XMLOutput
Package
Description
This package contains the main jelly API classes.
Core implementation classes for Jelly.
The core Tags from the JSTL plus Jelly extensions.
-
Uses of XMLOutput in org.apache.commons.jelly
Methods in org.apache.commons.jelly that return XMLOutputModifier and TypeMethodDescriptionstatic XMLOutput
XMLOutput.createDummyXMLOutput()
returns an XMLOutput object that will discard all tag-generated XML events.static XMLOutput
XMLOutput.createXMLOutput
(OutputStream out) Creates a text based XMLOutput which converts all XML events into text and writes to the underlying OutputStream.static XMLOutput
XMLOutput.createXMLOutput
(OutputStream out, boolean escapeText) Creates a text based XMLOutput which converts all XML events into text and writes to the underlying OutputStream.static XMLOutput
XMLOutput.createXMLOutput
(Writer writer) Creates a text based XMLOutput which converts all XML events into text and writes to the underlying Writer.static XMLOutput
XMLOutput.createXMLOutput
(Writer writer, boolean escapeText) Creates a text based XMLOutput which converts all XML events into text and writes to the underlying Writer.protected static XMLOutput
XMLOutput.createXMLOutput
(org.dom4j.io.XMLWriter xmlWriter) Factory method to create a new XMLOutput from an XMLWriterstatic XMLOutput
XMLOutput.createXMLOutput
(XMLReader xmlReader) Creates an XMLOutput from an existing SAX XMLReader.XMLOutputFactory.createXMLOutput
(Writer writer, boolean escapeText) Methods in org.apache.commons.jelly with parameters of type XMLOutputModifier and TypeMethodDescriptionvoid
Evaluates this tag after all the tags properties have been initialized.void
Tag.invokeBody
(XMLOutput output) A helper method to invoke this tags bodyvoid
TagSupport.invokeBody
(XMLOutput output) Invokes the body of this tag using the given outputvoid
Script.run
(JellyContext context, XMLOutput output) Evaluates the body of a tagParses the script from the given File then compiles it and runs it.Parses the script from the given file then compiles it and runs it.Parses the script from the given uri using the JellyContext.getResource() API then compiles it and runs it.Parses the script from the given uri using the JellyContext.getResource() API then compiles it and runs it.Parses the script from the given URL then compiles it and runs it.Parses the script from the given URL then compiles it and runs it.JellyContext.runScript
(InputSource source, XMLOutput output) Parses the script from the given InputSource then compiles it and runs it.JellyContext.runScript
(InputSource source, XMLOutput output, boolean export, boolean inherit) Parses the script from the given InputSource then compiles it and runs it. -
Uses of XMLOutput in org.apache.commons.jelly.impl
Methods in org.apache.commons.jelly.impl with parameters of type XMLOutputModifier and TypeMethodDescriptionvoid
void
void
void
protected void
TagScript.endNamespacePrefixes
(XMLOutput output) End the new namespace prefixes mapped for the current elementvoid
ExpressionScript.run
(JellyContext context, XMLOutput output) Evaluates the body of a tagvoid
ScriptBlock.run
(JellyContext context, XMLOutput output) Evaluates the body of a tagvoid
StaticTagScript.run
(JellyContext context, XMLOutput output) void
TagScript.run
(JellyContext context, XMLOutput output) Evaluates the body of a tagvoid
TextScript.run
(JellyContext context, XMLOutput output) Evaluates the body of a tagprotected void
TagScript.startNamespacePrefixes
(XMLOutput output) Output the new namespace prefixes used for this element -
Uses of XMLOutput in org.apache.commons.jelly.tags.core
Methods in org.apache.commons.jelly.tags.core that return XMLOutputModifier and TypeMethodDescriptionprotected XMLOutput
FileTag.createXMLOutput
(Writer writer) A Factory method to create a new XMLOutput from the given Writer.Methods in org.apache.commons.jelly.tags.core with parameters of type XMLOutputModifier and TypeMethodDescriptionvoid
void
void
void
void
void
void
void
void
void
void
Deprecated.void
Perform tag processingvoid
void
void
void
Deprecated.void
Invoke the body and produce no output.void
void
void
void
void
void
void
Deprecated.void
void
void
void
void
Tag interfacevoid
protected Object
UseBeanTag.newInstance
(Class theClass, Map attributes, XMLOutput output) Creates a new instance of the given class, which by default will invoke the default constructor.protected void
Parses the body of this tag and returns the parsed documentvoid
ThreadTag.setXmlOutput
(XMLOutput xmlOutput) Sets the destination of output -
Uses of XMLOutput in org.apache.commons.jelly.test
Methods in org.apache.commons.jelly.test that return XMLOutput