public static int __callBase_BindFieldImpl(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            Type fieldType;
            LuaObject.checkType(l, 2, out fieldType);
            string path;
            LuaObject.checkType(l, 3, out path);
            AutoBindAttribute.InitState initState;
            LuaObject.checkEnum <AutoBindAttribute.InitState>(l, 4, out initState);
            string fieldName;
            LuaObject.checkType(l, 5, out fieldName);
            string ctrlName;
            LuaObject.checkType(l, 6, out ctrlName);
            bool optional;
            LuaObject.checkType(l, 7, out optional);
            UnityEngine.Object o = getPathItemUIController.m_luaExportHelper.__callBase_BindFieldImpl(fieldType, path, initState, fieldName, ctrlName, optional);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, o);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int set_EventOnGotoButtonClick(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            Action <GetPathData>    value;
            int num = LuaObject.checkDelegate <Action <GetPathData> >(l, 2, out value);
            if (num != 0)
            {
                if (num == 1)
                {
                    getPathItemUIController.EventOnGotoButtonClick += value;
                }
                else if (num == 2)
                {
                    getPathItemUIController.EventOnGotoButtonClick -= value;
                }
            }
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int get_GetPathInfo(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, getPathItemUIController.GetPathInfo);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int get_m_timesAllValue(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, getPathItemUIController.m_luaExportHelper.m_timesAllValue);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int OnGotoButtonClick(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            getPathItemUIController.m_luaExportHelper.OnGotoButtonClick();
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_OnBindFiledsCompleted(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            getPathItemUIController.m_luaExportHelper.__callBase_OnBindFiledsCompleted();
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_ToString(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            string s = getPathItemUIController.m_luaExportHelper.__callBase_ToString();
            LuaObject.pushValue(l, true);
            LuaObject.pushValue(l, s);
            result = 2;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int set_GetPathInfo(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            GetPathData             getPathInfo;
            LuaObject.checkType <GetPathData>(l, 2, out getPathInfo);
            getPathItemUIController.m_luaExportHelper.GetPathInfo = getPathInfo;
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int set_m_stateCtrl(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            CommonUIStateController stateCtrl;
            LuaObject.checkType <CommonUIStateController>(l, 2, out stateCtrl);
            getPathItemUIController.m_luaExportHelper.m_stateCtrl = stateCtrl;
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int set_m_timesValue(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            Text timesValue;
            LuaObject.checkType <Text>(l, 2, out timesValue);
            getPathItemUIController.m_luaExportHelper.m_timesValue = timesValue;
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __clearDele_EventOnGotoButtonClick(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            GetPathData             obj;
            LuaObject.checkType <GetPathData>(l, 2, out obj);
            getPathItemUIController.m_luaExportHelper.__clearDele_EventOnGotoButtonClick(obj);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int SetGetPath(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            GetPathData             getPath;
            LuaObject.checkType <GetPathData>(l, 2, out getPath);
            getPathItemUIController.SetGetPath(getPath);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_SetToggleValueChangedListener(IntPtr l)
    {
        int result;

        try
        {
            int total = LuaDLL.lua_gettop(l);
            if (LuaObject.matchType(l, total, 2, typeof(string[]), typeof(Action <UIControllerBase, bool>)))
            {
                GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
                string[] fieldNames;
                LuaObject.checkArray <string>(l, 2, out fieldNames);
                Action <UIControllerBase, bool> action;
                LuaObject.checkDelegate <Action <UIControllerBase, bool> >(l, 3, out action);
                getPathItemUIController.m_luaExportHelper.__callBase_SetToggleValueChangedListener(fieldNames, action);
                LuaObject.pushValue(l, true);
                result = 1;
            }
            else if (LuaObject.matchType(l, total, 2, typeof(string), typeof(Action <UIControllerBase, bool>)))
            {
                GetPathItemUIController getPathItemUIController2 = (GetPathItemUIController)LuaObject.checkSelf(l);
                string fieldName;
                LuaObject.checkType(l, 2, out fieldName);
                Action <UIControllerBase, bool> action2;
                LuaObject.checkDelegate <Action <UIControllerBase, bool> >(l, 3, out action2);
                getPathItemUIController2.m_luaExportHelper.__callBase_SetToggleValueChangedListener(fieldName, action2);
                LuaObject.pushValue(l, true);
                result = 1;
            }
            else
            {
                LuaObject.pushValue(l, false);
                LuaDLL.lua_pushstring(l, "No matched override function __callBase_SetToggleValueChangedListener to call");
                result = 2;
            }
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_Initlize(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            string ctrlName;
            LuaObject.checkType(l, 2, out ctrlName);
            bool bindNow;
            LuaObject.checkType(l, 3, out bindNow);
            getPathItemUIController.m_luaExportHelper.__callBase_Initlize(ctrlName, bindNow);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_SetButtonLongPressEndListener(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            string fieldName;
            LuaObject.checkType(l, 2, out fieldName);
            Action <UIControllerBase> action;
            LuaObject.checkDelegate <Action <UIControllerBase> >(l, 3, out action);
            getPathItemUIController.m_luaExportHelper.__callBase_SetButtonLongPressEndListener(fieldName, action);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }
    public static int __callBase_OnButtonClick(IntPtr l)
    {
        int result;

        try
        {
            GetPathItemUIController getPathItemUIController = (GetPathItemUIController)LuaObject.checkSelf(l);
            Button button;
            LuaObject.checkType <Button>(l, 2, out button);
            string fieldName;
            LuaObject.checkType(l, 3, out fieldName);
            getPathItemUIController.m_luaExportHelper.__callBase_OnButtonClick(button, fieldName);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }