comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/FixingsOverviewInfo.java @ 2536:256b458cc7ea

Changed data field 'name' to 'description' in fix overview. flys-client/trunk@4448 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Mon, 21 May 2012 09:17:24 +0000
parents 87ac5c532523
children
comparison
equal deleted inserted replaced
2535:d0a9acddbea2 2536:256b458cc7ea
67 67
68 68
69 public static class FixEvent implements Serializable { 69 public static class FixEvent implements Serializable {
70 protected String cid; 70 protected String cid;
71 protected String date; 71 protected String date;
72 protected String name; 72 protected String description;
73 protected List<Sector> sectors; 73 protected List<Sector> sectors;
74 74
75 protected FixEvent () {} 75 protected FixEvent () {}
76 76
77 public FixEvent( 77 public FixEvent(
78 String cid, 78 String cid,
79 String date, 79 String date,
80 String name, 80 String description,
81 List<Sector> sectors 81 List<Sector> sectors
82 ) { 82 ) {
83 this.cid = cid; 83 this.cid = cid;
84 this.date = date; 84 this.date = date;
85 this.name = name; 85 this.description = description;
86 this.sectors = new ArrayList<Sector>(sectors); 86 this.sectors = new ArrayList<Sector>(sectors);
87 } 87 }
88 88
89 public String getCId() { 89 public String getCId() {
90 return this.cid; 90 return this.cid;
92 92
93 public String getDate() { 93 public String getDate() {
94 return this.date; 94 return this.date;
95 } 95 }
96 96
97 public String getName() { 97 public String getDescription() {
98 return this.name; 98 return this.description;
99 } 99 }
100 100
101 public List<Sector> getSectors() { 101 public List<Sector> getSectors() {
102 return this.sectors; 102 return this.sectors;
103 } 103 }

http://dive4elements.wald.intevation.org