Package org.concordion.api.extension

Examples of org.concordion.api.extension.ConcordionExtensionFactory


    ConcordionExtension extension;
    try {
      extension = (ConcordionExtension) extensionObject;
    } catch (ClassCastException e) {
      try {
        ConcordionExtensionFactory factory = (ConcordionExtensionFactory) extensionObject;
        extension = factory.createExtension();
      } catch (ClassCastException e1) {
        String message = String.format("Extension class '%s' must implement '%s' or '%s'", className,
            ConcordionExtension.class.getName(), ConcordionExtensionFactory.class.getName());
        throw new RuntimeException(message);
      }
View Full Code Here

TOP

Related Classes of org.concordion.api.extension.ConcordionExtensionFactory

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.