| org.apache.cocoon.components.language.markup.Logicsheet
All known Subclasses: org.apache.cocoon.components.language.markup.NamedLogicsheet,
Logicsheet | public class Logicsheet extends AbstractLogEnabled (Code) | | A code-generation logicsheet. This class is actually a wrapper for
a "standard" XSLT stylesheet stored as trax.Templates
object. Though this will change shortly: a new markup language
will be used for logicsheet authoring; logicsheets written in this
language will be transformed into an equivalent XSLT stylesheet
anyway... This class should probably be based on an interface...
author: Ricardo Rocha author: Davanum Srinivas author: Ovidiu Predescu version: CVS $Id: Logicsheet.java 433543 2006-08-22 06:22:54Z crossley $ |
Method Summary | |
public boolean | equals(Object other) Return true if other logicsheet has the same system id. | public void | fillNamespaceURIs() Fill the list of namespaces in this logicsheet. | public Map | getNamespaceURIs() This will return the list of namespaces in this logicsheet,
or null, if fillNamespaceURIs has not been called yet. | public String | getSystemId() Return system id which uniquely identifies logicsheet. | public TransformerHandler | getTransformerHandler() Obtain the TransformerHandler object that will perform the
transformation associated with this logicsheet. | public int | hashCode() Return hash code value for logicsheet. |
namespaceURIs | protected Map namespaceURIs(Code) | | the template namespace's list
|
equals | public boolean equals(Object other)(Code) | | Return true if other logicsheet has the same system id.
|
fillNamespaceURIs | public void fillNamespaceURIs() throws ProcessingException(Code) | | Fill the list of namespaces in this logicsheet.
|
getNamespaceURIs | public Map getNamespaceURIs()(Code) | | This will return the list of namespaces in this logicsheet,
or null, if fillNamespaceURIs has not been called yet.
|
getSystemId | public String getSystemId()(Code) | | Return system id which uniquely identifies logicsheet.
|
getTransformerHandler | public TransformerHandler getTransformerHandler() throws ProcessingException(Code) | | Obtain the TransformerHandler object that will perform the
transformation associated with this logicsheet.
a TransformerHandler value |
hashCode | public int hashCode()(Code) | | Return hash code value for logicsheet.
|
|
|