view src/main/java/de/intevation/lada/model/query/QueryFilter.java @ 302:71284b42ba39

Added label attribute to the QueryFilter
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 16 Aug 2013 12:27:43 +0200
parents b196ef9d8645
children 567ce7697fc7
line wrap: on
line source
package de.intevation.lada.model.query;


public class QueryFilter
{
    private String dataIndex;
    private String type;
    private String label;

    public QueryFilter() {
    }

    public QueryFilter(String dataIndex, String type, String label) {
        this.dataIndex = dataIndex;
        this.type = type;
        this.label = label;
    }

    public String getDataIndex() {
        return dataIndex;
    }

    public void setDataIndex(String dataIndex) {
        this.dataIndex = dataIndex;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }
}
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)