|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Catalog | |
org.apache.commons.chain | The fundamental API contracts for the Chain of Responsibilty Pattern as implemented in this package. |
org.apache.commons.chain.config | Optional package for configuring command chains in a catalog (using Digester) from an XML configuration file. |
org.apache.commons.chain.impl | Convenient base implementations of Chain of Responsibility Pattern
contracts from org.apache.commons.chain . |
Uses of Catalog in org.apache.commons.chain |
Methods in org.apache.commons.chain that return Catalog | |
abstract Catalog |
CatalogFactory.getCatalog()
Gets the default instance of Catalog associated with the factory (if any); otherwise, return null . |
abstract Catalog |
CatalogFactory.getCatalog(String name)
Retrieves a Catalog instance by name (if any); otherwise return null . |
Methods in org.apache.commons.chain with parameters of type Catalog | |
abstract void |
CatalogFactory.setCatalog(Catalog catalog)
Sets the default instance of Catalog associated with the factory. |
abstract void |
CatalogFactory.addCatalog(String name,
Catalog catalog)
Adds a named instance of Catalog to the factory (for subsequent retrieval later). |
Uses of Catalog in org.apache.commons.chain.config |
Methods in org.apache.commons.chain.config with parameters of type Catalog | |
void |
ConfigParser.parse(Catalog catalog,
URL url)
Deprecated. Use parse(URL) on a configuration resource with "factory" element(s) embedded |
Uses of Catalog in org.apache.commons.chain.impl |
Classes in org.apache.commons.chain.impl that implement Catalog | |
class |
CatalogBase
Simple in-memory implementation of Catalog . |
Methods in org.apache.commons.chain.impl that return Catalog | |
Catalog |
CatalogFactoryBase.getCatalog()
Gets the default instance of Catalog associated with the factory (if any); otherwise, return null . |
Catalog |
CatalogFactoryBase.getCatalog(String name)
Retrieves a Catalog instance by name (if any); otherwise return null . |
Methods in org.apache.commons.chain.impl with parameters of type Catalog | |
void |
CatalogFactoryBase.setCatalog(Catalog catalog)
Sets the default instance of Catalog associated with the factory. |
void |
CatalogFactoryBase.addCatalog(String name,
Catalog catalog)
Adds a named instance of Catalog to the factory (for subsequent retrieval later). |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |