Interface ComponentsBundle
-
- All Known Implementing Classes:
DefaultComponentsBundle
public interface ComponentsBundleA component bundle is a package comprising of one or several components that share the same XML namespace and schema.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ComponentManagergetComponentManager(java.lang.String componentName)Returns the manager for a component type identified by name.java.util.Set<java.lang.String>getComponentNames()Returns a set that contains the names of components included in this bundle.ComponentsXmlParsergetXmlParser()Returns the XML parsing information for this bundle.
-
-
-
Method Detail
-
getXmlParser
ComponentsXmlParser getXmlParser()
Returns the XML parsing information for this bundle.- Returns:
- the bundle XML parser
-
getComponentNames
java.util.Set<java.lang.String> getComponentNames()
Returns a set that contains the names of components included in this bundle.- Returns:
- the set of component names in this bundle
-
getComponentManager
ComponentManager getComponentManager(java.lang.String componentName)
Returns the manager for a component type identified by name.- Parameters:
componentName- the component name- Returns:
- the manager for the corresponding component type
- Throws:
JRRuntimeException- if the bundle does not include a component type having the specified name
-
-