about summary refs log tree commit diff
path: root/usth/ICT2.2/labwork/4/Employee.java
diff options
context:
space:
mode:
Diffstat (limited to 'usth/ICT2.2/labwork/4/Employee.java')
-rw-r--r--usth/ICT2.2/labwork/4/Employee.java27
1 files changed, 27 insertions, 0 deletions
diff --git a/usth/ICT2.2/labwork/4/Employee.java b/usth/ICT2.2/labwork/4/Employee.java
new file mode 100644
index 0000000..51647b5
--- /dev/null
+++ b/usth/ICT2.2/labwork/4/Employee.java
@@ -0,0 +1,27 @@
+public class Employee
+{
+  private int ID;
+  private String name;
+  private String dep;
+  private double basic;
+  private double extra;
+
+  public Employee(int ID, String name, String dep, double basic, double extra)
+  {
+    this.ID = ID;
+    this.name = name;
+    this.dep = dep;
+    this.basic = basic;
+    this.extra = extra;
+  }
+
+  public int getID() { return ID; }
+  public String getName() { return name; }
+  public String getDep() { return dep; }
+  public double getIncome() { return basic + extra*2.5; }
+
+  public String toString()
+  {
+    return String.format("#%d %s [%s]: %g", ID, name, dep, getIncome());
+  }
+}