org.codehaus.enunciate.modules.xml
Class PrefixMethod

java.lang.Object
  extended by org.codehaus.enunciate.modules.xml.PrefixMethod
All Implemented Interfaces:
freemarker.template.TemplateMethodModel, freemarker.template.TemplateModel

public class PrefixMethod
extends java.lang.Object
implements freemarker.template.TemplateMethodModel

A method used in templates to output the prefix for a given namespace.

Author:
Ryan Heaton

Field Summary
 
Fields inherited from interface freemarker.template.TemplateModel
NOTHING
 
Constructor Summary
PrefixMethod()
           
 
Method Summary
 java.lang.Object exec(java.util.List list)
          Returns the qname of the element that has the first parameter as the namespace, the second as the element.
protected static EnunciateFreemarkerModel getModel()
          Get the current root model.
protected static java.util.Map<java.lang.String,java.lang.String> getNamespacesToPrefixes()
          The namespace to prefix map.
protected  java.lang.String lookupPrefix(java.lang.String namespace)
          Convenience method to lookup a namespace prefix given a namespace.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PrefixMethod

public PrefixMethod()
Method Detail

exec

public java.lang.Object exec(java.util.List list)
                      throws freemarker.template.TemplateModelException
Returns the qname of the element that has the first parameter as the namespace, the second as the element.

Specified by:
exec in interface freemarker.template.TemplateMethodModel
Parameters:
list - The arguments.
Returns:
The qname.
Throws:
freemarker.template.TemplateModelException

lookupPrefix

protected java.lang.String lookupPrefix(java.lang.String namespace)
Convenience method to lookup a namespace prefix given a namespace.

Parameters:
namespace - The namespace for which to lookup the prefix.
Returns:
The namespace prefix.

getNamespacesToPrefixes

protected static java.util.Map<java.lang.String,java.lang.String> getNamespacesToPrefixes()
The namespace to prefix map.

Returns:
The namespace to prefix map.

getModel

protected static EnunciateFreemarkerModel getModel()
Get the current root model.

Returns:
The current root model.