Package de.innovationgate.webgate.api

Examples of de.innovationgate.webgate.api.WGHierarchicalDatabaseListener


    public WGHierarchicalDatabaseListener createListenerInstance(String classOrModuleName) throws Throwable {
        if (classOrModuleName != null) {
            // try to find java class
            try {
                Class listenerClass = Class.forName(classOrModuleName);
                WGHierarchicalDatabaseListener listenerImpl = (WGHierarchicalDatabaseListener) listenerClass.newInstance();               
                return listenerImpl;
            }
            catch (ClassNotFoundException e) {
                return new TMLScriptHDBListener(_core, classOrModuleName);
            }    
View Full Code Here

TOP

Related Classes of de.innovationgate.webgate.api.WGHierarchicalDatabaseListener

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.