view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/fixings/QWI.java @ 4255:670e98f5a441

Fixed leak while merging facets. The ThemeList that is used by OutputHelper to sort the Facets for an Output now uses a list to store the ManagedFacets. The correct order is made up by sorting the List using Collections.sort() function of the Java JDK. Therfore, the ManagedFacet class implements the Comparable interface. The return value of its compareTo(other) method depends on the value of the 'position' field.
author Ingo Weinzierl <weinzierl.ingo@googlemail.com>
date Thu, 25 Oct 2012 14:01:46 +0200
parents e727e3ebdf85
children
line wrap: on
line source
package de.intevation.flys.artifacts.model.fixings;

import de.intevation.flys.artifacts.model.QW;

import java.util.Date;

public class QWI
extends      QW
{
    protected String  description;
    protected Date    date;
    protected boolean interpolated;
    protected int     index;

    public QWI() {
    }

    public QWI(double q, double w) {
        super(q, w);
    }

    public QWI(
        double  q,
        double  w,
        String  description,
        Date    date,
        boolean interpolated,
        int     index
    ) {
        super(q, w);
        this.description  = description;
        this.date         = date;
        this.interpolated = interpolated;
        this.index        = index;
    }

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public boolean getInterpolated() {
        return interpolated;
    }

    public void setInterpolated(boolean interpolated) {
        this.interpolated = interpolated;
    }

    public int getIndex() {
        return index;
    }

    public void setIndex(int index) {
        this.index = index;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org