1 /*
2 * Demosys.
3 *
4 * Terms of license - http://opensource.org/licenses/apachepl.php
5 */
6 package org.demosys.web.story;
7
8 /***
9 *
10 */
11 public class StoryView implements Cloneable {
12 private String title;
13 private String description;
14 private double estimate;
15 private int priority;
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 double getEstimate() {
51 return estimate;
52 }
53
54
55 public void setEstimate(double estimate) {
56 this.estimate = estimate;
57 }
58
59
60 public int getPriority() {
61 return priority;
62 }
63
64
65 public void setPriority(int priority) {
66 this.priority = priority;
67 }
68 }
This page was automatically generated by Maven