| org.apache.cocoon.forms.binding.library.LibraryManager
All known Subclasses: org.apache.cocoon.forms.binding.library.LibraryManagerImpl,
LibraryManager | public interface LibraryManager (Code) | | The work interface for the LibraryManager, the class that
manages all used form binding library definitions so they can be shared
between forms.
version: $Id: LibraryManager.java 517733 2007-03-13 15:37:22Z vgritsenko $ |
Method Summary | |
Library | get(String sourceURI) Get the cached instance of the library loaded from the specified source
URI.
Parameters: sourceURI - URI of the library source. | Library | get(String sourceURI, String baseURI) Get the cached instance of the library loaded from the specified source
URI, resolved relative to the base URI.
Parameters: sourceURI - Relative URI of the library source. Parameters: baseURI - Base URI of the library source. | Library | load(String sourceURI) Loads (and caches) a library from specified source URI.
Parameters: sourceURI - URI of the library source. | Library | load(String sourceURI, String baseURI) Loads (and caches) a library from specified source URI, resolved relative
to the base URI.
Parameters: sourceURI - Relative URI of the library source. Parameters: baseURI - Base URI of the library source. | Library | newLibrary() Create new instance of the
Library . |
get | Library get(String sourceURI) throws LibraryException(Code) | | Get the cached instance of the library loaded from the specified source
URI.
Parameters: sourceURI - URI of the library source. Cached instance of the library, or null if it was not loaded. |
get | Library get(String sourceURI, String baseURI) throws LibraryException(Code) | | Get the cached instance of the library loaded from the specified source
URI, resolved relative to the base URI.
Parameters: sourceURI - Relative URI of the library source. Parameters: baseURI - Base URI of the library source. Cached instance of the library, or null if it was not loaded. |
load | Library load(String sourceURI) throws LibraryException(Code) | | Loads (and caches) a library from specified source URI.
Parameters: sourceURI - URI of the library source. Library loaded from the source URI. |
load | Library load(String sourceURI, String baseURI) throws LibraryException(Code) | | Loads (and caches) a library from specified source URI, resolved relative
to the base URI.
Parameters: sourceURI - Relative URI of the library source. Parameters: baseURI - Base URI of the library source. Library loaded from the source URI. |
|
|