view flys-client/src/main/java/de/intevation/flys/client/shared/model/DefaultData.java @ 49:d573ae975330

Some refactoring (imports, etc). flys-client/trunk@1497 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 17 Mar 2011 11:39:27 +0000
parents a85bac235069
children a2923d63f530
line wrap: on
line source
package de.intevation.flys.client.shared.model;


/**
 * The default implementation of a {@link Data} item. This class just implements
 * constructors to create instances and the necessary methods of the interface.
 *
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public class DefaultData implements Data {

    /** The label of this Data object.*/
    protected String label;

    /** The description.*/
    protected String description;

    /** The type.*/
    protected String type;

    /** The DataItems.*/
    protected DataItem[] items;

    /** The UIProvider that should be used to create UIs. */
    protected String uiProvider;


    public DefaultData() {
    }


    /**
     * The default constructor to create new DefaultData objects.
     *
     * @param label The label.
     * @param description The description.
     * @param type The type.
     * @param items The DataItems.
     */
    public DefaultData(
        String label,
        String description,
        String type,
        DataItem[] items,
        String uiProvider)
    {
        this.label       = label;
        this.description = description;
        this.type        = type;
        this.items       = items;
        this.uiProvider  = uiProvider;
    }


    public String getLabel() {
        return label;
    }


    public String getDescription() {
        return description;
    }


    public String getType() {
        return type;
    }


    public DataItem[] getItems() {
        return items;
    }


    public String getUIProvider() {
        return uiProvider;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org