Пример #1
0
        public LuaMako(ISpiderView scripting)
        {
            // Initialize runtime engine. For now we use JavaScriptEngine
            RuntimeMachine = scripting.Runtime;

            // Set JSPython to try as default
            // JSPython = true;

            // Raise create event handler
            if (this.Create != null)
            {
                this.Create(this, new EventArgs());
            }
        }
Пример #2
0
 public LuaInterpreter(ISpiderView host)
 {
     this.host = host;
     this.lua = new LuaInterface.Lua();
       //      this.lua.DoString(Properties.Resources.helperlua); // Add helper methods
 }
Пример #3
0
 public EntifySchemeHandlerFactory(ISpiderView spiderView)
 {
     this.SpiderView = spiderView;
 }
Пример #4
0
 public EntifyScheme(ISpiderView spiderView)
 {
     this.SpiderView = spiderView;
 }
Пример #5
0
 public EntifySchemeHandlerFactory(ISpiderView spiderView, EntifyScheme entifyScheme)
 {
     this.SpiderView = spiderView;
     this.EntifyScheme = entifyScheme;
 }