|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.velocity.runtime.RuntimeSingleton
public class RuntimeSingleton
This is the Runtime system for Velocity. It is the single access point for all functionality in Velocity. It adheres to the mediator pattern and is the only structure that developers need to be familiar with in order to get Velocity to perform. The Runtime will also cooperate with external systems like Turbine. Runtime properties can set and then the Runtime is initialized. Turbine for example knows where the templates are to be loaded from, and where the velocity log file should be placed. So in the case of Velocity cooperating with Turbine the code might look something like the following:
RuntimeSingleton.setProperty(RuntimeConstants.FILE_RESOURCE_LOADER_PATH, templatePath); RuntimeSingleton.setProperty(RuntimeConstants.RUNTIME_LOG, pathToVelocityLog); RuntimeSingleton.init();
----------------------------------------------------------------------- N O T E S O N R U N T I M E I N I T I A L I Z A T I O N ----------------------------------------------------------------------- RuntimeSingleton.init() If Runtime.init() is called by itself the Runtime will initialize with a set of default values. ----------------------------------------------------------------------- RuntimeSingleton.init(String/Properties) In this case the default velocity properties are layed down first to provide a solid base, then any properties provided in the given properties object will override the corresponding default property. -----------------------------------------------------------------------
RuntimeInstance
Field Summary |
---|
Constructor Summary | |
---|---|
RuntimeSingleton()
|
Method Summary | |
---|---|
static void |
addProperty(String key,
Object value)
Add a property to the configuration. |
static boolean |
addVelocimacro(String name,
String macro,
String[] argArray,
String sourceTemplate,
int line,
int column)
Adds a new Velocimacro. |
static void |
clearProperty(String key)
Clear the values pertaining to a particular property. |
static boolean |
dumpVMNamespace(String namespace)
tells the vmFactory to dump the specified namespace. |
static Object |
getApplicationAttribute(Object key)
|
static boolean |
getBoolean(String key,
boolean def)
Boolean property accessor method to hide the configuration implementation. |
static org.apache.commons.collections.ExtendedProperties |
getConfiguration()
Return the velocity runtime configuration object. |
static ContentResource |
getContent(String name)
Returns a static content resource from the resource manager. |
static ContentResource |
getContent(String name,
String encoding)
Returns a static content resource from the resource manager. |
static int |
getInt(String key)
Int property accessor method to hide the configuration implementation. |
static int |
getInt(String key,
int defaultValue)
Int property accessor method to hide the configuration implementation. |
static Introspector |
getIntrospector()
Return the Introspector for this RuntimeInstance |
static String |
getLoaderNameForResource(String resourceName)
Determines is a template exists, and returns name of the loader that provides it. |
static Object |
getProperty(String key)
Allows an external caller to get a property. |
static RuntimeInstance |
getRuntimeInstance()
Deprecated. Use getRuntimeServices() instead. |
static RuntimeServices |
getRuntimeServices()
|
static String |
getString(String key)
String property accessor method to hide the configuration implementation |
static String |
getString(String key,
String defaultValue)
String property accessor method with default to hide the configuration implementation. |
static Template |
getTemplate(String name)
Returns a Template from the resource manager. |
static Template |
getTemplate(String name,
String encoding)
Returns a Template from the resource manager |
static Uberspect |
getUberspect()
|
static Directive |
getVelocimacro(String vmName,
String templateName)
Returns the appropriate VelocimacroProxy object if strVMname is a valid current Velocimacro. |
static void |
init()
This is the primary initialization method in the Velocity Runtime. |
static void |
init(Properties p)
Initialize the Velocity Runtime with a Properties object. |
static void |
init(String configurationFile)
Initialize the Velocity Runtime with the name of ExtendedProperties object. |
static boolean |
isVelocimacro(String vmName,
String templateName)
Checks to see if a VM exists |
static SimpleNode |
parse(Reader reader,
String templateName)
Parse the input and return the root of AST node structure. |
static SimpleNode |
parse(Reader reader,
String templateName,
boolean dumpNamespace)
Parse the input and return the root of the AST node structure. |
static void |
setConfiguration(org.apache.commons.collections.ExtendedProperties configuration)
Allow an external system to set an ExtendedProperties object to use. |
static void |
setProperty(String key,
Object value)
Allows an external system to set a property in the Velocity Runtime. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RuntimeSingleton()
Method Detail |
---|
public static void init() throws Exception
Exception
public static RuntimeServices getRuntimeServices()
public static void setProperty(String key, Object value)
key
- property keyvalue
- property valuepublic static void setConfiguration(org.apache.commons.collections.ExtendedProperties configuration)
configuration
- public static void addProperty(String key, Object value)
key
- value
- public static void clearProperty(String key)
key
- key of property to clearpublic static Object getProperty(String key)
key
- property to returnpublic static void init(Properties p) throws Exception
p
-
Exception
public static void init(String configurationFile) throws Exception
configurationFile
-
Exception
public static SimpleNode parse(Reader reader, String templateName) throws ParseException
reader
- inputstream retrieved by a resource loadertemplateName
- name of the template being parsed
ParseException
public static SimpleNode parse(Reader reader, String templateName, boolean dumpNamespace) throws ParseException
reader
- inputstream retrieved by a resource loadertemplateName
- name of the template being parseddumpNamespace
- flag to dump the Velocimacro namespace for this template
ParseException
public static Template getTemplate(String name) throws ResourceNotFoundException, ParseErrorException, Exception
Template
from the resource manager.
This method assumes that the character encoding of the
template is set by the input.encoding
property. The default is "ISO-8859-1"
name
- The file name of the desired template.
ResourceNotFoundException
- if template not found
from any available source.
ParseErrorException
- if template cannot be parsed due
to syntax (or other) error.
Exception
- if an error occurs in template initializationpublic static Template getTemplate(String name, String encoding) throws ResourceNotFoundException, ParseErrorException, Exception
Template
from the resource manager
name
- The name of the desired template.encoding
- Character encoding of the template
ResourceNotFoundException
- if template not found
from any available source.
ParseErrorException
- if template cannot be parsed due
to syntax (or other) error.
Exception
- if an error occurs in template initializationpublic static ContentResource getContent(String name) throws ResourceNotFoundException, ParseErrorException, Exception
name
- Name of content resource to get
ResourceNotFoundException
- if template not found
from any available source.
ParseErrorException
Exception
public static ContentResource getContent(String name, String encoding) throws ResourceNotFoundException, ParseErrorException, Exception
name
- Name of content resource to getencoding
- Character encoding to use
ResourceNotFoundException
- if template not found
from any available source.
ParseErrorException
Exception
public static String getLoaderNameForResource(String resourceName)
resourceName
- Name of template or content resource
public static String getString(String key, String defaultValue)
key
- key property keydefaultValue
- default value to return if key not
found in resource manager.
public static Directive getVelocimacro(String vmName, String templateName)
vmName
- Name of velocimacro requestedtemplateName
-
public static boolean addVelocimacro(String name, String macro, String[] argArray, String sourceTemplate, int line, int column)
name
- Name of velocimacromacro
- String form of macro bodyargArray
- Array of strings, containing the
#macro() arguments. the 0th is the name.
public static boolean isVelocimacro(String vmName, String templateName)
vmName
- Name of velocimacrotemplateName
-
public static boolean dumpVMNamespace(String namespace)
public static String getString(String key)
key
- property key
public static int getInt(String key)
key
- key property key
public static int getInt(String key, int defaultValue)
key
- property keydefaultValue
- default value
public static boolean getBoolean(String key, boolean def)
key
- property keydef
- default value if property not found
public static org.apache.commons.collections.ExtendedProperties getConfiguration()
public static Introspector getIntrospector()
public static Object getApplicationAttribute(Object key)
RuntimeServices.getApplicationAttribute(Object)
public static Uberspect getUberspect()
RuntimeServices.getUberspect()
@Deprecated public static RuntimeInstance getRuntimeInstance()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |