Package de.innovationgate.wgpublisher.expressions.tmlscript.wgaglobal

Examples of de.innovationgate.wgpublisher.expressions.tmlscript.wgaglobal.Design


        return WGAGlobal.getLookupKeys(cx, thisObj, args, funObj);
    }

    public static WGDatabase localDB(Context cx, Scriptable thisObj, java.lang.Object[] args, Function funObj) throws JavaScriptException, WGException {
       
        Design design;
        if (args.length == 0) {
            design = Design.getCurrent();
        }
        else if (args[0] instanceof NativeObject) {
            design = new Design((NativeObject) args[0]);
        }
        else {
            throw new EvaluatorException("Global function localDB() needs either no or a custom TMLScript object as parameter");
        }
       
View Full Code Here

TOP

Related Classes of de.innovationgate.wgpublisher.expressions.tmlscript.wgaglobal.Design

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.