static public int Set(IntPtr l)
 {
     try {
         int argc = LuaDLL.lua_gettop(l);
         if (matchType(l, argc, 2, typeof(Dsl.ISyntaxComponent)))
         {
             SkillSystem.SkillLongParam self = (SkillSystem.SkillLongParam)checkSelf(l);
             Dsl.ISyntaxComponent       a1;
             checkType(l, 2, out a1);
             self.Set(a1);
             pushValue(l, true);
             return(1);
         }
         else if (matchType(l, argc, 2, typeof(System.Int64)))
         {
             SkillSystem.SkillLongParam self = (SkillSystem.SkillLongParam)checkSelf(l);
             System.Int64 a1;
             checkType(l, 2, out a1);
             self.Set(a1);
             pushValue(l, true);
             return(1);
         }
         pushValue(l, false);
         LuaDLL.lua_pushstring(l, "No matched override function to call");
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int get_EditableValue(IntPtr l)
 {
     try {
         SkillSystem.SkillLongParam self = (SkillSystem.SkillLongParam)checkSelf(l);
         pushValue(l, true);
         pushValue(l, self.EditableValue);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int constructor(IntPtr l)
 {
     try {
         SkillSystem.SkillLongParam o;
         o = new SkillSystem.SkillLongParam();
         pushValue(l, true);
         pushValue(l, o);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int CopyFrom(IntPtr l)
 {
     try {
         SkillSystem.SkillLongParam self = (SkillSystem.SkillLongParam)checkSelf(l);
         SkillSystem.SkillNonStringParam <System.Int64> a1;
         checkType(l, 2, out a1);
         self.CopyFrom(a1);
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int set_EditableValue(IntPtr l)
 {
     try {
         SkillSystem.SkillLongParam self = (SkillSystem.SkillLongParam)checkSelf(l);
         System.Object v;
         checkType(l, 2, out v);
         self.EditableValue = v;
         pushValue(l, true);
         return(1);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }
 static public int Get(IntPtr l)
 {
     try {
         SkillSystem.SkillLongParam self = (SkillSystem.SkillLongParam)checkSelf(l);
         SkillSystem.SkillInstance  a1;
         checkType(l, 2, out a1);
         var ret = self.Get(a1);
         pushValue(l, true);
         pushValue(l, ret);
         return(2);
     }
     catch (Exception e) {
         return(error(l, e));
     }
 }