view flys-client/src/main/java/de/intevation/flys/client/shared/model/PropertyGroup.java @ 1463:14ce1c2a9f6c

Removed code for UI generation. SmartGWT classes are not usable on serverside and in model classes. flys-client/trunk@3502 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Raimund Renkert <raimund.renkert@intevation.de>
date Tue, 20 Dec 2011 15:22:42 +0000
parents 0271f6747f80
children d0bcf5ba7adf
line wrap: on
line source
package de.intevation.flys.client.shared.model;

import java.util.List;

/**
 * @author <a href="mailto:raimund.renkert@intevation.de">Raimund Renkert</a>
 */
public class PropertyGroup implements Property {

    /** The group name */
    protected String name;

    protected List<Property> properties;

    public PropertyGroup() {

    }

    public PropertyGroup(String name) {
        this.name = name;
    }

    public PropertyGroup(String name, List<Property> properties) {
        this.name = name;
        this.properties = properties;
    }

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public List<Property> getProperties() {
        return this.properties;
    }

    public void setProperties(List<Property> properties) {
        this.properties = properties;
    }
}

http://dive4elements.wald.intevation.org