home *** CD-ROM | disk | FTP | other *** search
- package javax.help;
-
- import java.util.Locale;
-
- public class TOCItem extends TreeItem {
- private Map.ID imageID;
- // $FF: renamed from: hs javax.help.HelpSet
- private HelpSet field_0;
-
- public TOCItem(Map.ID var1, Map.ID var2, HelpSet var3, Locale var4) {
- super(var1, var4);
- this.imageID = var2;
- this.field_0 = var3;
- }
-
- public TOCItem(Map.ID var1, Map.ID var2, Locale var3) {
- super(var1, var3);
- if (var1 != null) {
- this.field_0 = var1.hs;
- } else {
- this.field_0 = null;
- }
-
- this.imageID = var2;
- this.field_0 = this.field_0;
- }
-
- public TOCItem() {
- super((Map.ID)null, (Locale)null);
- this.imageID = null;
- this.field_0 = null;
- }
-
- public Map.ID getImageID() {
- return this.imageID;
- }
-
- public HelpSet getHelpSet() {
- return this.field_0;
- }
- }
-