Package asis.ini.INI

Examples of asis.ini.INI.IniSectionHead


    private Collection<IniSectionHead> getSectionList() {
        Collection<IniSectionHead> sectionList = new ArrayList<>();

        for (IniSection currentSection : IniSection.values()) {
            sectionList.add(new IniSectionHead(currentSection.getName(), currentSection.getFormat()));
        }

        return sectionList;
    }
View Full Code Here


            }
        }
    }

    private void initializeLists(INI ini) {
        inclusions = (ArrayList) ini.getCollection(new IniSectionHead(IniSection.NPCINCLUSIONS.getName(),
                IniSection.NPCINCLUSIONS.getFormat()));
        exclusions = (ArrayList) ini.getCollection(new IniSectionHead(IniSection.NPCEXCLUSIONS.getName(),
                IniSection.NPCEXCLUSIONS.getFormat()));
        modExclusions.addAll((ArrayList) ini.getCollection(new IniSectionHead(IniSection.MODEXCLUSIONS.getName(),
                IniSection.MODEXCLUSIONS.getFormat())));

        numItems = ASIS.save.getInt(ASISSaveFile.GUISettings.NUMBER_OF_POTIONS);
        numChance = ASIS.save.getInt(ASISSaveFile.GUISettings.CHANCE_PER_POTION);
    }
View Full Code Here

    private Collection<IniSectionHead> getSectionList() {
        Collection<IniSectionHead> sectionList = new ArrayList<>();

        for (IniSection currentSection : IniSection.values()) {
            sectionList.add(new IniSectionHead(currentSection.getName(), currentSection.getFormat()));
        }

        return sectionList;
    }
View Full Code Here

        }
    }

    private void initializeTweakIniSections() {
        for (TweakIniSectionHead currentHead : TweakIniSectionHead.values()) {
            tweakIniSections.add(new IniSectionHead(currentHead.getName(), currentHead.getFormat()));
        }
    }
View Full Code Here

TOP

Related Classes of asis.ini.INI.IniSectionHead

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.