net.sf.jelly.apt.freemarker
Class FreemarkerVariable

java.lang.Object
  extended by net.sf.jelly.apt.freemarker.FreemarkerVariable

public class FreemarkerVariable
extends java.lang.Object

A variable in the freemarker model.

Author:
Ryan Heaton

Constructor Summary
FreemarkerVariable(java.lang.String namespace, java.lang.String name, java.lang.Object value)
          The variable.
 
Method Summary
 java.lang.String getName()
          The name of the variable.
 java.lang.String getNamespace()
          The namespace of the variable.
 java.lang.Object getValue()
          The value of the variable.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FreemarkerVariable

public FreemarkerVariable(java.lang.String namespace,
                          java.lang.String name,
                          java.lang.Object value)
The variable.

Parameters:
namespace - The namespace.
name - The name.
value - The value.
Method Detail

getName

public java.lang.String getName()
The name of the variable.

Returns:
The name of the variable.

getNamespace

public java.lang.String getNamespace()
The namespace of the variable. null or "" means the root namespace.

Returns:
The namespace of the variable.

getValue

public java.lang.Object getValue()
The value of the variable.

Returns:
The value of the variable.