Package jeeves.server.dispatchers.guiservices

Examples of jeeves.server.dispatchers.guiservices.Call


    private GuiService getGuiService(String pack, Element elem) throws Exception {
        if (ConfigFile.Output.Child.XML.equals(elem.getName()))
            return new XmlFile(elem, defaultLang, defaultLocal);

        if (ConfigFile.Output.Child.CALL.equals(elem.getName()))
            return new Call(elem, pack, appPath);

        throw new IllegalArgumentException("Unknown GUI element : " + Xml.getString(elem));
    }
View Full Code Here

TOP

Related Classes of jeeves.server.dispatchers.guiservices.Call

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.