org.infohazard.maverick.flow
Interface TransformFactory

All Known Implementing Classes:
DocumentTransformFactory, XSLTransformFactory

public interface TransformFactory


Method Summary
 Transform createTransform(org.jdom.Element transformNode)
          Creates a transform from the element (and any children, if appropriate).
 void init(org.jdom.Element factoryNode, javax.servlet.ServletConfig servletCfg)
          Factories will be initialized with the XML from the configuration file so that they can check for any options defined in child nodes, attributes, etc.
 

Method Detail

init

public void init(org.jdom.Element factoryNode,
                 javax.servlet.ServletConfig servletCfg)
          throws ConfigException
Factories will be initialized with the XML from the configuration file so that they can check for any options defined in child nodes, attributes, etc.

ConfigException

createTransform

public Transform createTransform(org.jdom.Element transformNode)
                          throws ConfigException
Creates a transform from the element (and any children, if appropriate).

ConfigException