Uses of Interface
org.apache.commons.jelly.Script

Packages that use Script
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.parser Jelly parsers both XML syntax and non-XML syntaxes are supported. 
org.apache.commons.jelly.tags.define Tag library which allows the creation of new tags using Jelly script itself. 
org.apache.commons.jelly.tags.swing A tag library for creating Swing UIs via Jelly script 
org.apache.commons.jelly.task A collection of Ant tasks for working with Jelly. 
 

Uses of Script in org.apache.commons.jelly
 

Fields in org.apache.commons.jelly declared as Script
protected  Script TagSupport.body
          the body of the tag
 

Methods in org.apache.commons.jelly that return Script
 Script Jelly.compileScript()
          Compiles the script
 Script Tag.getBody()
           
 Script TagSupport.getBody()
           
 Script JellyContext.compileScript(java.lang.String uri)
          Attempts to parse the script from the given uri using the JellyContext.getResource(java.lang.String) method then returns the compiled script.
 Script JellyContext.compileScript(java.net.URL url)
          Attempts to parse the script from the given URL using the JellyContext.getResource(java.lang.String) method then returns the compiled script.
 Script Script.compile()
          Called by the parser to allow a more efficient representation of the script to be used.
 

Methods in org.apache.commons.jelly with parameters of type Script
 void Tag.setBody(Script body)
          Sets the body of the tag
 void TagSupport.setBody(Script body)
          Sets the body of the tag
 

Uses of Script in org.apache.commons.jelly.impl
 

Classes in org.apache.commons.jelly.impl that implement Script
 class BeanTagScript
          TagScript evaluates a custom tag.
 class CompositeTextScriptBlock
          CompositeTextScriptBlock represents a text body of a a tag which contains expressions, so that whitespace trimming can be handled differently.
 class DynaTagScript
          DynaTagScript is a script evaluates a custom DynaTag.
 class ExpressionScript
          ExpressionScript outputs the value of an expression as text.
 class ScriptBlock
          ScriptBlock a block of scripts.
 class StaticTagScript
          StaticTagScript is a script that evaluates a StaticTag, a piece of static XML though its attributes or element content may contain dynamic expressions.
 class TagScript
          TagScript abstract base class for a script that evaluates a custom tag.
 class TextScript
          TextScript outputs some static text.
 

Methods in org.apache.commons.jelly.impl that return Script
 Script TextScript.compile()
           
 Script ScriptBlock.compile()
           
 Script TagScript.compile()
          Compiles the tags body
 Script TagScript.getTagBody()
          Returns the tagBody.
 Script DynamicTag.getTemplate()
          The template to be executed by this tag which may well invoke this instances body from inside the template
 Script ExpressionScript.compile()
           
 

Methods in org.apache.commons.jelly.impl with parameters of type Script
 void ScriptBlock.addScript(Script script)
          Add a new script to the end of this block
 void ScriptBlock.removeScript(Script script)
          Removes a script from this block
 void TagScript.setTagBody(Script tagBody)
          Sets the tagBody.
 void DynamicTagLibrary.registerDynamicTag(java.lang.String name, Script template)
          Creates a new tag with the given name and template
 void DynamicTag.setTemplate(Script template)
           
 

Constructors in org.apache.commons.jelly.impl with parameters of type Script
DynamicTag(Script template)
           
 

Uses of Script in org.apache.commons.jelly.parser
 

Methods in org.apache.commons.jelly.parser that return Script
 Script XMLParser.parse(java.io.File file)
          Parse the content of the specified file using this XMLParser.
 Script XMLParser.parse(org.xml.sax.InputSource input)
          Parse the content of the specified input source using this XMLParser.
 Script XMLParser.parse(java.io.InputStream input)
          Parse the content of the specified input stream using this XMLParser.
 Script XMLParser.parse(java.io.Reader reader)
          Parse the content of the specified reader using this XMLParser.
 Script XMLParser.parse(java.lang.String uri)
          Parse the content of the specified URI using this XMLParser.
 

Uses of Script in org.apache.commons.jelly.tags.define
 

Methods in org.apache.commons.jelly.tags.define with parameters of type Script
 void InvokeTag.setScript(Script script)
          Sets the Script to be invoked by this tag, which typically has been previously defined by the use of the <script> tag.
 

Uses of Script in org.apache.commons.jelly.tags.swing
 

Methods in org.apache.commons.jelly.tags.swing with parameters of type Script
 void WindowListenerTag.setActivated(Script activated)
          Sets the Script to be executed when the window is activated.
 void WindowListenerTag.setClosed(Script closed)
          Sets the Script to be executed when the window is closed.
 void WindowListenerTag.setClosing(Script closing)
          Sets the Script to be executed when the window is closing.
 void WindowListenerTag.setDeactivated(Script deactivated)
          Sets the Script to be executed when the window is deactivated.
 void WindowListenerTag.setDeiconified(Script deiconified)
          Sets the Script to be executed when the window is deiconified.
 void WindowListenerTag.setIconified(Script iconified)
          Sets the Script to be executed when the window is iconified.
 void WindowListenerTag.setOpened(Script opened)
          Sets the Script to be executed when the window is opened.
protected  void WindowListenerTag.invokeScript(XMLOutput output, java.awt.event.WindowEvent event, Script script)
           
 

Uses of Script in org.apache.commons.jelly.task
 

Methods in org.apache.commons.jelly.task that return Script
protected  Script JellyTask.compileScript()
          Compiles the script
 



Copyright © 2002-2002 Apache Software Foundation. All Rights Reserved.