comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/PropertyGroup.java @ 1439:4df2d9a4b9b4

Added interfaces and container for output settings. Added settings container to collection. Extract settings from describe collection document. flys-client/trunk@3420 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 15 Dec 2011 08:29:04 +0000
parents
children 0271f6747f80
comparison
equal deleted inserted replaced
1438:432180235caf 1439:4df2d9a4b9b4
1 package de.intevation.flys.client.shared.model;
2
3 import java.util.List;
4
5 /**
6 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
7 */
8 public class PropertyGroup implements Property {
9
10 /** The group name */
11 protected String name;
12
13 protected List<Property> properties;
14
15 public PropertyGroup() {
16
17 }
18
19 public PropertyGroup(String name) {
20 this.name = name;
21 }
22
23 public PropertyGroup(String name, List<Property> properties) {
24 this.name = name;
25 this.properties = properties;
26 }
27
28 public String getName() {
29 return this.name;
30 }
31
32 public void setName(String name) {
33 this.name = name;
34 }
35
36 public List<Property> getProperties() {
37 return this.properties;
38 }
39
40 public void setProperties(List<Property> properties) {
41 this.properties = properties;
42 }
43
44 public void generateUI() {
45 return;
46 }
47 }

http://dive4elements.wald.intevation.org