1 /*
2 * Demosys.
3 *
4 * Terms of license - http://opensource.org/licenses/apachepl.php
5 */
6 package org.demosys.web.project;
7 /***
8 * Value Object d'un projet
9 *
10 * @author ABOUELF
11 */
12 public class ProjectView implements Cloneable {
13 private String name;
14 private String description;
15
16 public Object clone() {
17 try {
18 return super.clone();
19 }
20 catch (CloneNotSupportedException e) {
21 // Impossible
22 e.printStackTrace();
23
24 return null;
25 }
26 }
27
28
29 public String getName() {
30 return name;
31 }
32
33
34 public void setName(String name) {
35 this.name = name;
36 }
37
38
39 public String getDescription() {
40 return description;
41 }
42
43
44 public void setDescription(String description) {
45 this.description = description;
46 }
47 }
This page was automatically generated by Maven