home *** CD-ROM | disk | FTP | other *** search
- public class ButtonObject {
- private ButtonObject next = null;
- private ButtonObject subButton;
- private String text;
- // $FF: renamed from: ID java.lang.String
- private String field_0;
- private String url;
- private String target;
- private boolean subButtonsExist;
-
- public final ButtonObject getSubButtons() {
- return this.subButton;
- }
-
- public final void setURL(String var1) {
- this.url = var1;
- }
-
- public ButtonObject() {
- this.subButton = new ButtonObject(true);
- this.subButton.setNext(new ButtonObject(true));
- this.text = "";
- this.url = "";
- this.field_0 = "0";
- this.subButtonsExist = false;
- this.target = "";
- }
-
- public ButtonObject(boolean var1) {
- this.subButton = null;
- this.text = "";
- this.url = "";
- this.field_0 = "0";
- }
-
- public final String getURL() {
- return this.url;
- }
-
- public final void setSubButtons(ButtonObject var1) {
- this.subButton = var1;
- }
-
- public final void setID(String var1) {
- this.field_0 = var1;
- }
-
- public final String getID() {
- return this.field_0;
- }
-
- public final boolean getSubButtonsExist() {
- return this.subButtonsExist;
- }
-
- public final void setSubButtonsExist(boolean var1) {
- this.subButtonsExist = var1;
- }
-
- public final void setText(String var1) {
- this.text = var1;
- }
-
- public final String getText() {
- return this.text;
- }
-
- public final ButtonObject getNext() {
- return this.next;
- }
-
- public final void setNext(ButtonObject var1) {
- this.next = var1;
- }
-
- public String getTarget() {
- if (this.target == null) {
- this.target = "";
- }
-
- return this.target;
- }
-
- public void setTarget(String var1) {
- this.target = var1;
- }
- }
-