Package org.apache.torque.generator.configuration.outlet

Examples of org.apache.torque.generator.configuration.outlet.TypedOutletSaxHandlerFactory


        if (factory == null)
        {
            throw new NullPointerException("factory must not be null");
        }
        String type = factory.getType();
        TypedOutletSaxHandlerFactory oldFactory
            = typedOutletHandlerFactories.get(type);
        if (oldFactory != null)
        {
            throw new ConfigurationException(
                    "Attempted to register a OutletSaxHandlerFactory "
                        + "of type "
                        + factory.getType()
                        + " and class "
                        + factory.getClass().getName()
                        + " : A factory with this type already exists, "
                        + " it has the class "
                        + oldFactory.getClass().getName());
        }
        typedOutletHandlerFactories.put(factory.getType(), factory);
    }
View Full Code Here

TOP

Related Classes of org.apache.torque.generator.configuration.outlet.TypedOutletSaxHandlerFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.