示例#1
0
        public void setFloatValue(String sectionName, String key, double value, int precision, Boolean removeComments)
        {
            IniSection iniSection = getSection(sectionName, true);

            iniSection.setFloatValue(key, value, precision, removeComments);
        }
示例#2
0
        public void setIntValue(String sectionName, String key, int value, Boolean removeComments)
        {
            IniSection iniSection = getSection(sectionName, true);

            iniSection.setIntValue(key, value, removeComments);
        }
示例#3
0
        public void setBoolValue(String sectionName, String key, Boolean value, BooleanMode booleanmode, Boolean removeComments)
        {
            IniSection iniSection = getSection(sectionName, true);

            iniSection.setBoolValue(key, value, booleanmode, removeComments);
        }
示例#4
0
        public void setStringValue(String sectionName, String key, String value)
        {
            IniSection iniSection = getSection(sectionName, true);

            iniSection.setStringValue(key, value);
        }