Example #1
0
        public string getProjectDescription(PrefLogIndex index)
        {
            if ((int)index >= (int)PrefLogIndex.Count)
            {
                return(null);
            }

            return(m_projectDescriptions[(int)index]);
        }
Example #2
0
        public string getLogGoogleId(PrefLogIndex index)
        {
            if ((int)index >= (int)PrefLogIndex.Count)
            {
                return(null);
            }

            return(m_LogGoogleIds[(int)index]);
        }
Example #3
0
        public string getProjectName(PrefLogIndex index)
        {
            if ((int)index >= (int)PrefLogIndex.Count)
            {
                return(null);
            }

            return(m_projectNames[(int)index]);
        }
Example #4
0
        public bool setLogGoogleId(string value, PrefLogIndex index)
        {
            if ((int)index >= (int)PrefLogIndex.Count)
            {
                return(false);
            }

            m_LogGoogleIds[(int)index] = value;
            return(true);
        }
Example #5
0
        public bool setActiveLog(PrefLogIndex index)
        {
            if (index >= PrefLogIndex.Count)
            {
                return(false);
            }

            m_ints[(int)PrefsData.PrefInt.ActiveLog] = (int)index;
            return(true);
        }
Example #6
0
        public bool setProjectDescription(string value, PrefLogIndex index)
        {
            if ((int)index >= (int)PrefLogIndex.Count)
            {
                return(false);
            }

            m_projectDescriptions[(int)index] = value;
            return(true);
        }
Example #7
0
        public bool setLogName(string value, PrefLogIndex index)
        {
            if ((int)index >= (int)PrefLogIndex.Count)
            {
                return(false);
            }

            m_logNames[(int)index] = value;
            return(true);
        }