about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/3/Java/Button.java
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/3/Java/Button.java')
-rw-r--r--usth/ICT2.2/labwork/3/Java/Button.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/3/Java/Button.java b/usth/ICT2.2/labwork/3/Java/Button.java
new file mode 100644
index 0000000..8a26b3f
--- /dev/null
+++ b/usth/ICT2.2/labwork/3/Java/Button.java
@@ -0,0 +1,50 @@
+public class Button
+{
+  private String label;
+  private String color;
+  private boolean state;
+
+  public Button(String label, String color)
+  {
+    this.label = label;
+    this.color = color;
+    this.state = false;
+  }
+
+  public String toString()
+  {
+    return String.format("<button %s with color %s and state %s>",
+                         label, color, state);
+  }
+
+  // To be honest these getters and setters are really redundant in this case
+  public String getLabel()
+  {
+    return label;
+  }
+
+  public String getColor()
+  {
+    return color;
+  }
+
+  public void setLabel(String label)
+  {
+    this.label = label;
+  }
+
+  public void setColor(String color)
+  {
+    this.color = color;
+  }
+
+  public void dePress()
+  {
+    this.state = true;
+  }
+
+  public void unDepress()
+  {
+    this.state = false;
+  }
+}