ccs.xml
Class XSLParameter

java.lang.Object
  extended by ccs.xml.XSLParameter

public class XSLParameter
extends java.lang.Object

An XSLT stylesheet can accept parameters. This class is a dumb container for such a parameter. You need to know about XML namespaces to understand this.

See Also:
XSLCache.transform(java.lang.String, java.io.InputStream, java.lang.String)

Field Summary
 java.lang.String name
          The "local part" of the parameter.
 java.lang.String namespace
          The namespace URL of the parameter.
 java.lang.String value
          The value of the parameter.
 
Constructor Summary
XSLParameter()
          Build an empty XSLParameter (all elements null).
XSLParameter(java.lang.String name, java.lang.String namespace, java.lang.String value)
          Build an XSLParameter with the specified values.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public java.lang.String name
The "local part" of the parameter.


namespace

public java.lang.String namespace
The namespace URL of the parameter.


value

public java.lang.String value
The value of the parameter.

Constructor Detail

XSLParameter

public XSLParameter()
Build an empty XSLParameter (all elements null).


XSLParameter

public XSLParameter(java.lang.String name,
                    java.lang.String namespace,
                    java.lang.String value)
Build an XSLParameter with the specified values.

Parameters:
name - The local part.
namespace - The XML namespace.
value - The value.