Package | Description |
---|---|
org.apache.commons.jelly |
This package contains the main jelly API classes.
|
org.apache.commons.jelly.impl |
Core implementation classes for Jelly.
|
org.apache.commons.jelly.tags.core |
The core Tags from the JSTL plus Jelly extensions.
|
Modifier and Type | Method and Description |
---|---|
TagLibrary |
JellyContext.getTagLibrary(String namespaceURI) |
Modifier and Type | Method and Description |
---|---|
void |
JellyContext.registerTagLibrary(String namespaceURI,
TagLibrary taglib)
Registers the given tag library against the given namespace URI.
|
Modifier and Type | Class and Description |
---|---|
class |
DynamicTagLibrary
DynamicTagLibrary represents a TagLibrary which
gets created by running a Jelly script. |
Modifier and Type | Method and Description |
---|---|
TagLibrary |
DynamicTagLibrary.getParent()
Returns the parent library which will be used to resolve unknown tags.
|
protected TagLibrary |
DefaultTagLibraryResolver.loadClass(String uri,
String className)
Instantiates the given class name.
|
protected TagLibrary |
DefaultTagLibraryResolver.newInstance(String uri,
Class theClass)
Creates a new instance of the given TagLibrary class or
return null if it could not be instantiated.
|
TagLibrary |
TagLibraryResolver.resolveTagLibrary(String uri)
Attempts to resolve the given URI to be associated with a TagLibrary
otherwise null is returned to indicate no tag library could be found
so that the namespace URI should be treated as just vanilla XML.
|
TagLibrary |
DefaultTagLibraryResolver.resolveTagLibrary(String uri)
Attempts to resolve the given URI to be associated with a TagLibrary
otherwise null is returned to indicate no tag library could be found
so that the namespace URI should be treated as just vanilla XML.
|
Modifier and Type | Method and Description |
---|---|
void |
Embedded.registerTagLibrary(String namespaceURI,
TagLibrary taglib)
Registers the given tag library against the given namespace URI.
|
void |
DynamicTagLibrary.setParent(TagLibrary parent)
Sets the parent to inherit tags from that are not defined in this library.
|
Modifier and Type | Class and Description |
---|---|
class |
CoreTagLibrary
This is the core tag library for jelly and contains commonly
used tags.
|
Copyright © 2014 Apache Software Foundation. All rights reserved.