예제 #1
0
파일: Mako.cs 프로젝트: krikelin/Entifi
        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
파일: Entify.cs 프로젝트: krikelin/Entifi
 public EntifySchemeHandlerFactory(ISpiderView spiderView)
 {
     this.SpiderView = spiderView;
 }
예제 #4
0
파일: Entify.cs 프로젝트: krikelin/Entifi
 public EntifyScheme(ISpiderView spiderView)
 {
     this.SpiderView = spiderView;
 }
예제 #5
0
파일: Entify.cs 프로젝트: krikelin/Entifi
 public EntifySchemeHandlerFactory(ISpiderView spiderView, EntifyScheme entifyScheme)
 {
     this.SpiderView = spiderView;
     this.EntifyScheme = entifyScheme;
 }