/* * This file ("BookletIndexEntry.java") is part of the Actually Additions Mod for Minecraft. * It is created and owned by Ellpeck and distributed * under the Actually Additions License to be found at * http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md * View the source code at https://github.com/Ellpeck/ActuallyAdditions * * © 2015 Ellpeck */ package ellpeck.actuallyadditions.booklet; import ellpeck.actuallyadditions.util.ModUtil; import ellpeck.actuallyadditions.util.StringUtil; import java.util.ArrayList; public class BookletIndexEntry{ private final String unlocalizedName; public ArrayList chapters = new ArrayList(); public BookletIndexEntry(String unlocalizedName){ this.unlocalizedName = unlocalizedName; InitBooklet.entries.add(this); } public String getUnlocalizedName(){ return this.unlocalizedName; } public void addChapter(BookletChapter chapter){ this.chapters.add(chapter); } public String getLocalizedName(){ return StringUtil.localize("booklet."+ModUtil.MOD_ID_LOWER+".indexEntry."+this.unlocalizedName+".name"); } }