예제 #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);
        }