Package FESI.Data

Examples of FESI.Data.GlobalObject


    public void initializeExtension (Evaluator evaluator)
            throws EcmaScriptException
    {
        // XmlRpc.setDebug (true);
        this.evaluator = evaluator;
        GlobalObject go = evaluator.getGlobalObject();
        FunctionPrototype fp = (FunctionPrototype)
                evaluator.getFunctionPrototype();

        op = evaluator.getObjectPrototype();

        // the Remote constructor
        go.putHiddenProperty("Remote",
                new GlobalObjectRemote("Remote", evaluator, fp));

        // the RemoteServer constructor
        go.putHiddenProperty("RemoteServer",
                new GlobalObjectRemoteServer("RemoteServer", evaluator, fp));
    }
View Full Code Here

TOP

Related Classes of FESI.Data.GlobalObject

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.