Uses of Interface
org.apache.hivemind.ErrorHandler

Packages that use ErrorHandler
org.apache.hivemind.impl Implementations of interfaces defined in the org.apache.commons.hivemind package. 
org.apache.hivemind.internal   
org.apache.hivemind.order Classes and interfaces for ordering objects based on dependencies. 
org.apache.hivemind.parse Classes used to parse HiveMind module deployment descriptors, and descriptor objects that represent the parsed information. 
org.apache.hivemind.service.impl Implementations of services provided by the hivemind module. 
 

Uses of ErrorHandler in org.apache.hivemind.impl
 

Classes in org.apache.hivemind.impl that implement ErrorHandler
 class DefaultErrorHandler
          Default implementation of ErrorHandler that simply logs error.
 class StrictErrorHandler
          An implementation of ErrorHandler that throws an ApplicationRuntimeException instead of logging an error.
 

Methods in org.apache.hivemind.impl that return ErrorHandler
 ErrorHandler RegistryImpl.getErrorHander()
           
 ErrorHandler ModuleImpl.getErrorHandler()
           
 

Constructors in org.apache.hivemind.impl with parameters of type ErrorHandler
TranslatorManager(Registry registry, ErrorHandler errorHandler)
           
SchemaProcessorImpl(ErrorHandler errorHandler, org.apache.commons.logging.Log log, Schema schema)
           
RegistryImpl(ErrorHandler errorHandler, java.util.Locale locale)
           
RegistryBuilder(ErrorHandler handler)
           
RegistryAssemblyImpl(ErrorHandler errorHandler)
           
 

Uses of ErrorHandler in org.apache.hivemind.internal
 

Methods in org.apache.hivemind.internal that return ErrorHandler
 ErrorHandler RegistryInfrastructure.getErrorHander()
          Returns the ErrorHandler for this Registry.
 ErrorHandler Module.getErrorHandler()
          Returns the ErrorHandler for this Registry.
 

Uses of ErrorHandler in org.apache.hivemind.order
 

Constructors in org.apache.hivemind.order with parameters of type ErrorHandler
Orderer(ErrorHandler errorHandler, java.lang.String objectType)
          Creates an instance using org.apache.hivemind.order.Orderer as the Log.
Orderer(org.apache.commons.logging.Log log, ErrorHandler errorHandler, java.lang.String objectType)
          Creates a new instance, but directs all debug and error logging output to the provided log.
 

Uses of ErrorHandler in org.apache.hivemind.parse
 

Constructors in org.apache.hivemind.parse with parameters of type ErrorHandler
DescriptorParser(ErrorHandler errorHandler, RegistryAssembly assembly)
           
ConversionDescriptor(ErrorHandler errorHandler, ElementModelImpl elementModel, Location location)
           
 

Uses of ErrorHandler in org.apache.hivemind.service.impl
 

Methods in org.apache.hivemind.service.impl with parameters of type ErrorHandler
 void ObjectTranslator.setErrorHandler(ErrorHandler handler)
           
 void DefaultsSymbolSource.setErrorHandler(ErrorHandler handler)
           
 

Constructors in org.apache.hivemind.service.impl with parameters of type ErrorHandler
EventLinkerImpl(org.apache.commons.logging.Log log, ErrorHandler errorHandler)