Example usage for org.dom4j.rule Action interface-usage

List of usage examples for org.dom4j.rule Action interface-usage

Introduction

In this page you can find the example usage for org.dom4j.rule Action interface-usage.

Usage

From source file org.apache.taglibs.xtags.xpath.BodyAction.java

/** An Action which tells the Stylesheet tag which template
  * body to execute.
  *
  * @author James Elson
  */
public class BodyAction implements Action {

From source file org.apache.taglibs.xtags.xpath.JspAction.java

/** An Action which includes a piece of JSP
  *
  * @author James Strachan
  */
public class JspAction implements Action {

From source file org.apache.taglibs.xtags.xpath.JspCopyOfAction.java

/** Outputs the given Node to the current JSP output
  *
  * @author James Strachan
  */
public class JspCopyOfAction implements Action {

From source file org.apache.taglibs.xtags.xpath.JspValueOfAction.java

/** Outputs the string-value of the given Node (as defined by the XPath
  * specification) to the current JSP output
  *
  * @author James Strachan
  */
public class JspValueOfAction implements Action {

From source file org.apache.taglibs.xtags.xpath.ReflectionAction.java

/** Calls a void method on an instance when the action is fired.
  *
  * @author James Strachan
  */
public class ReflectionAction implements Action {

From source file org.apache.taglibs.xtags.xpath.StylesheetValueOfAction.java

/** Creates the string-value of the given Node (as defined by the XPath
  * specification) and passes it to the parent StylesheetTag for output
  * at the correct time.
  *
  * @author James Elson
  */