|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XMLOutput | |
org.apache.commons.jelly | This package contains the main jelly API classes. |
org.apache.commons.jelly.impl | Core implementation classes for Jelly. |
org.apache.commons.jelly.tags.ant | A tag library for using Ant tasks within Jelly |
org.apache.commons.jelly.tags.antlr | |
org.apache.commons.jelly.tags.core | The core Tags from the JSTL |
org.apache.commons.jelly.tags.define | Tag library which allows the creation of new tags using Jelly script itself. |
org.apache.commons.jelly.tags.html | Tags for parsing HTML so that it can be processed by Jelly using Andy Clark's NeckoHTML |
org.apache.commons.jelly.tags.http | A tag library for working with HTTP, performing HTTP GET, POST and other actions |
org.apache.commons.jelly.tags.interaction | |
org.apache.commons.jelly.tags.jms | A tag library for working with JMS using the Messenger project |
org.apache.commons.jelly.tags.jsl | The Jelly Stylesheet Library (JSL) |
org.apache.commons.jelly.tags.junit | A collection of JUnit tags for performing unit tests written in Jelly script. |
org.apache.commons.jelly.tags.log | Custom tags for generating textual logging information using commons-logging which will use either log4j, logkit or JDK1.4 logging depending on the classpath and configuration. |
org.apache.commons.jelly.tags.ojb | A variety of tags for working with the ObjectBridge persistence engine |
org.apache.commons.jelly.tags.sql | The SQL Tags from the JSTL |
org.apache.commons.jelly.tags.util | |
org.apache.commons.jelly.tags.validate | A tag library for validating XML using various schema languages like DTD, XML Schema, Relax NG as well as Relax and TREX. |
org.apache.commons.jelly.tags.werkz | A tag library for defining targets (goals) and having pre/post dependencies which uses the Werkz library for resolving goals and dependencies. |
org.apache.commons.jelly.tags.xml | The XML Tags from the JSTL |
org.apache.commons.jelly.task | A collection of Ant tasks for working with Jelly. |
Uses of XMLOutput in org.apache.commons.jelly |
Methods in org.apache.commons.jelly that return XMLOutput | |
static XMLOutput |
XMLOutput.createXMLOutput(org.xml.sax.XMLReader xmlReader)
Creates an XMLOutput from an existing SAX XMLReader |
static XMLOutput |
XMLOutput.createXMLOutput(java.io.Writer writer)
Creates a text based XMLOutput which converts all XML events into text and writes to the underlying Writer. |
static XMLOutput |
XMLOutput.createXMLOutput(java.io.Writer writer,
boolean escapeText)
Creates a text based XMLOutput which converts all XML events into text and writes to the underlying Writer. |
static XMLOutput |
XMLOutput.createXMLOutput(java.io.OutputStream out)
Creates a text based XMLOutput which converts all XML events into text and writes to the underlying OutputStream. |
static XMLOutput |
XMLOutput.createXMLOutput(java.io.OutputStream out,
boolean escapeText)
Creates a text based XMLOutput which converts all XML events into text and writes to the underlying OutputStream. |
protected static XMLOutput |
XMLOutput.createXMLOutput(org.dom4j.io.XMLWriter xmlWriter)
Factory method to create a new XMLOutput from an XMLWriter |
Methods in org.apache.commons.jelly with parameters of type XMLOutput | |
void |
Tag.doTag(XMLOutput output)
Evaluates this tag after all the tags properties have been initialized. |
void |
Tag.invokeBody(XMLOutput output)
A helper method to invoke this tags body |
void |
TagSupport.invokeBody(XMLOutput output)
Invokes the body of this tag using the given output |
JellyContext |
JellyContext.runScript(java.io.File file,
XMLOutput output)
Parses the script from the given File then compiles it and runs it. |
JellyContext |
JellyContext.runScript(java.net.URL url,
XMLOutput output)
Parses the script from the given URL then compiles it and runs it. |
JellyContext |
JellyContext.runScript(java.lang.String uri,
XMLOutput output)
Parses the script from the given uri using the JellyContext.getResource() API then compiles it and runs it. |
JellyContext |
JellyContext.runScript(java.lang.String uri,
XMLOutput output,
boolean export,
boolean inherit)
Parses the script from the given uri using the JellyContext.getResource() API then compiles it and runs it. |
void |
Script.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
Uses of XMLOutput in org.apache.commons.jelly.impl |
Methods in org.apache.commons.jelly.impl with parameters of type XMLOutput | |
void |
ScriptBlock.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
TextScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
ExpressionScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
protected void |
TagScript.startNamespacePrefixes(XMLOutput output)
Output the new namespace prefixes used for this element |
protected void |
TagScript.endNamespacePrefixes(XMLOutput output)
End the new namespace prefixes mapped for the current element |
void |
BeanTagScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
DynaTagScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
StaticTagScript.run(JellyContext context,
XMLOutput output)
Evaluates the body of a tag |
void |
StaticTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.ant |
Methods in org.apache.commons.jelly.tags.ant with parameters of type XMLOutput | |
void |
AntTag.doTag(XMLOutput output)
|
void |
FileScannerTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.antlr |
Methods in org.apache.commons.jelly.tags.antlr with parameters of type XMLOutput | |
void |
AntlrTag.doTag(XMLOutput output)
Evaluate the body to register all the various goals and pre/post conditions then run all the current targets |
void |
GrammarTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.core |
Methods in org.apache.commons.jelly.tags.core with parameters of type XMLOutput | |
void |
ImportTag.doTag(XMLOutput output)
|
void |
WhenTag.doTag(XMLOutput output)
|
void |
ExprTag.doTag(XMLOutput output)
|
void |
IncludeTag.doTag(XMLOutput output)
|
void |
ForEachTag.doTag(XMLOutput output)
|
void |
JellyTag.doTag(XMLOutput output)
|
void |
NewTag.doTag(XMLOutput output)
|
void |
CatchTag.doTag(XMLOutput output)
|
void |
ThreadTag.doTag(XMLOutput output)
|
void |
ThreadTag.setXmlOutput(XMLOutput xmlOutput)
Sets the destination of output |
void |
OtherwiseTag.doTag(XMLOutput output)
|
void |
ChooseTag.doTag(XMLOutput output)
|
void |
SetTag.doTag(XMLOutput output)
|
void |
IfTag.doTag(XMLOutput output)
|
void |
FileTag.doTag(XMLOutput output)
|
void |
WhitespaceTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.define |
Methods in org.apache.commons.jelly.tags.define with parameters of type XMLOutput | |
void |
BeanTag.doTag(XMLOutput output)
|
void |
DefineTagTag.doTag(XMLOutput output)
|
void |
DefineBeanTag.doTag(XMLOutput output)
|
void |
DefineTagLibTag.doTag(XMLOutput output)
|
void |
InvokeBodyTag.doTag(XMLOutput output)
|
void |
DefineScriptTag.doTag(XMLOutput output)
|
void |
AttributeTag.doTag(XMLOutput output)
|
void |
DynamicTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.html |
Methods in org.apache.commons.jelly.tags.html with parameters of type XMLOutput | |
void |
ParseTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.http |
Methods in org.apache.commons.jelly.tags.http with parameters of type XMLOutput | |
void |
MethodSupportTag.doTag(XMLOutput output)
|
void |
HeaderTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.interaction |
Methods in org.apache.commons.jelly.tags.interaction with parameters of type XMLOutput | |
void |
AskTag.doTag(XMLOutput output)
Perform functionality provided by the tag |
Uses of XMLOutput in org.apache.commons.jelly.tags.jms |
Methods in org.apache.commons.jelly.tags.jms with parameters of type XMLOutput | |
void |
DestinationTag.doTag(XMLOutput output)
|
void |
SendTag.doTag(XMLOutput output)
|
void |
MessageTag.doTag(XMLOutput output)
|
void |
ConnectionTag.doTag(XMLOutput output)
|
void |
PropertyTag.doTag(XMLOutput output)
|
void |
ReceiveTag.doTag(XMLOutput output)
|
void |
MapEntryTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.jsl |
Methods in org.apache.commons.jelly.tags.jsl with parameters of type XMLOutput | |
void |
StyleTag.doTag(XMLOutput output)
|
void |
TemplateTag.doTag(XMLOutput output)
|
void |
StylesheetTag.doTag(XMLOutput output)
|
void |
ApplyTemplatesTag.doTag(XMLOutput output)
By default just evaluate the body |
Uses of XMLOutput in org.apache.commons.jelly.tags.junit |
Methods in org.apache.commons.jelly.tags.junit with parameters of type XMLOutput | |
void |
SuiteTag.doTag(XMLOutput output)
|
void |
RunTag.doTag(XMLOutput output)
|
protected junit.framework.TestResult |
RunTag.createResult(XMLOutput output)
Factory method to create a new TestResult to capture the output of the test cases |
void |
FailTag.doTag(XMLOutput output)
|
void |
CaseTag.doTag(XMLOutput output)
|
void |
AssertTag.doTag(XMLOutput output)
|
void |
AssertEqualsTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.log |
Methods in org.apache.commons.jelly.tags.log with parameters of type XMLOutput | |
void |
FatalTag.doTag(XMLOutput output)
|
void |
InfoTag.doTag(XMLOutput output)
|
void |
WarnTag.doTag(XMLOutput output)
|
void |
TraceTag.doTag(XMLOutput output)
|
void |
DebugTag.doTag(XMLOutput output)
|
void |
ErrorTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.ojb |
Methods in org.apache.commons.jelly.tags.ojb with parameters of type XMLOutput | |
void |
BrokerTag.doTag(XMLOutput output)
|
void |
StoreTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.sql |
Methods in org.apache.commons.jelly.tags.sql with parameters of type XMLOutput | |
void |
TransactionTag.doTag(XMLOutput output)
Prepares for execution by setting the initial state, such as getting the Connection and preparing it for
the transaction. |
void |
DriverTag.doTag(XMLOutput output)
|
void |
QueryTag.doTag(XMLOutput output)
Execute the SQL statement, set either through the sql
attribute or as the body, and save the result as a variable
named by the var attribute in the scope specified
by the scope attribute, as an object that implements
the Result interface. |
void |
DateParamTag.doTag(XMLOutput output)
|
void |
UpdateTag.doTag(XMLOutput output)
Execute the SQL statement, set either through the sql
attribute or as the body, and save the result as a variable
named by the var attribute in the scope specified
by the scope attribute, as an object that implements
the Result interface. |
void |
ParamTag.doTag(XMLOutput output)
|
void |
SetDataSourceTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.util |
Methods in org.apache.commons.jelly.tags.util with parameters of type XMLOutput | |
void |
TokenizeTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.validate |
Methods in org.apache.commons.jelly.tags.validate with parameters of type XMLOutput | |
void |
VerifierTag.doTag(XMLOutput output)
|
void |
ValidateTag.doTag(XMLOutput output)
|
protected void |
ValidateTag.outputException(XMLOutput output,
java.lang.String name,
org.xml.sax.SAXParseException e)
Outputs the given validation exception as XML to the output |
Uses of XMLOutput in org.apache.commons.jelly.tags.werkz |
Methods in org.apache.commons.jelly.tags.werkz with parameters of type XMLOutput | |
void |
AttainGoalTag.doTag(XMLOutput output)
Evaluate the body to register all the various goals and pre/post conditions then run all the current targets |
void |
AttainTag.doTag(XMLOutput output)
Evaluate the body to register all the various goals and pre/post conditions then run all the current targets |
void |
GoalTag.doTag(XMLOutput output)
Evaluate the body to register all the various goals and pre/post conditions then run all the current targets |
void |
PostGoalTag.doTag(XMLOutput output)
Evaluate the body to register all the various goals and pre/post conditions then run all the current targets |
void |
PreGoalTag.doTag(XMLOutput output)
Evaluate the body to register all the various goals and pre/post conditions then run all the current targets |
void |
ProjectTag.doTag(XMLOutput output)
Evaluate the body to register all the various goals and pre/post conditions then run all the current targets |
void |
PostActionTag.doTag(XMLOutput output)
Evaluate the body to register all the various goals and pre/post conditions then run all the current targets |
void |
PreActionTag.doTag(XMLOutput output)
Evaluate the body to register all the various goals and pre/post conditions then run all the current targets |
Constructors in org.apache.commons.jelly.tags.werkz with parameters of type XMLOutput | |
JellySession(XMLOutput out)
|
|
JellyBuildListener(XMLOutput out)
|
Uses of XMLOutput in org.apache.commons.jelly.tags.xml |
Methods in org.apache.commons.jelly.tags.xml with parameters of type XMLOutput | |
void |
CopyTag.doTag(XMLOutput output)
|
void |
IfTag.doTag(XMLOutput output)
|
void |
ElementTag.doTag(XMLOutput output)
|
void |
ForEachTag.doTag(XMLOutput output)
|
protected org.dom4j.Document |
ParseTagSupport.parseBody(XMLOutput output)
Parses the body of this tag and returns the parsed document |
void |
CopyOfTag.doTag(XMLOutput output)
|
void |
AttributeTag.doTag(XMLOutput output)
|
void |
ExprTag.doTag(XMLOutput output)
|
void |
ParseTag.doTag(XMLOutput output)
|
void |
SetTag.doTag(XMLOutput output)
|
Uses of XMLOutput in org.apache.commons.jelly.task |
Methods in org.apache.commons.jelly.task that return XMLOutput | |
XMLOutput |
JellyTask.getXMLOutput()
|
Methods in org.apache.commons.jelly.task with parameters of type XMLOutput | |
void |
JellyTask.setXMLOutput(XMLOutput xmlOutput)
Sets the XMLOutput used |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |