1 /*
2 * Demosys.
3 *
4 * Terms of license - http://opensource.org/licenses/apachepl.php
5 */
6 package org.demosys.task;
7 /***
8 */
9 public class TaskView implements Cloneable {
10 private String title;
11 private String description;
12 private String responsible;
13 private double estimate;
14 private double work;
15 private double remainingWork;
16
17 public Object clone() {
18 try {
19 return super.clone();
20 }
21 catch (CloneNotSupportedException e) {
22 // Impossible
23 e.printStackTrace();
24
25 return null;
26 }
27 }
28
29
30 public String getTitle() {
31 return title;
32 }
33
34
35 public void setTitle(String title) {
36 this.title = title;
37 }
38
39
40 public String getDescription() {
41 return description;
42 }
43
44
45 public void setDescription(String description) {
46 this.description = description;
47 }
48
49
50 public String getResponsible() {
51 return responsible;
52 }
53
54
55 public void setResponsible(String responsible) {
56 this.responsible = responsible;
57 }
58
59
60 public double getEstimate() {
61 return estimate;
62 }
63
64
65 public void setEstimate(double estimate) {
66 this.estimate = estimate;
67 }
68
69
70 public double getWork() {
71 return work;
72 }
73
74
75 public void setWork(double work) {
76 this.work = work;
77 }
78
79
80 public double getRemainingWork() {
81 return remainingWork;
82 }
83
84
85 public void setRemainingWork(double remainingWork) {
86 this.remainingWork = remainingWork;
87 }
88 }
This page was automatically generated by Maven