view flys-client/src/main/java/de/intevation/flys/client/shared/model/FixFilter.java @ 3847:f3b821735e39

Calculate the info url via i18n Don't fetch the info url from the artifact service and use i18n to calculate the url by using the official gauge and river number. flys-client/trunk@5582 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Bjoern Ricks <bjoern.ricks@intevation.de>
date Mon, 24 Sep 2012 08:39:22 +0000
parents f14d4c668ec5
children 7d796197e20a
line wrap: on
line source
package de.intevation.flys.client.shared.model;

import java.io.Serializable;


public class FixFilter implements Serializable{

    protected String river;
    protected double fromKm;
    protected double toKm;
    protected double currentKm;
    protected int fromClass;
    protected int toClass;
    protected long fromDate;
    protected long toDate;
    protected boolean hasDate;
    protected int[] events;

    public FixFilter() {
        this.river = "";
        this.fromKm = -Double.MAX_VALUE;
        this.toKm = -1;
        this.currentKm = -1;
        this.fromClass = -1;
        this.toClass = -1;
        this.fromDate = -1;
        this.toDate = -1;
        this.hasDate = false;
        this.events = new int[0];
    }

    public void setRiver(String river) {
        this.river = river;
    }

    public void setFromKm(double from) {
        this.fromKm = from;
    }

    public void setToKm(double to) {
        this.toKm = to;
    }

    public void setCurrentKm(double km) {
        this.currentKm = km;
    }

    public void setFromClass(int from) {
        this.fromClass = from;
    }

    public void setToClass(int to) {
        this.toClass = to;
    }

    public void setFromDate(long from) {
        this.hasDate = true;
        this.fromDate = from;
    }

    public void setToDate(long to) {
        this.hasDate = true;
        this.toDate = to;
    }

    public void setEvents(int[] ev) {
        this.events = ev;
    }

    public String getRiver() {
        return this.river;
    }

    public double getFromKm() {
        return this.fromKm;
    }

    public double getToKm() {
        return this.toKm;
    }

    public double getCurrentKm() {
        return this.currentKm;
    }

    public int getFromClass() {
        return this.fromClass;
    }

    public int getToClass() {
        return this.toClass;
    }

    public long getFromDate() {
        return this.fromDate;
    }

    public long getToDate() {
        return this.toDate;
    }

    public int[] getEvents() {
        return this.events;
    }
}

http://dive4elements.wald.intevation.org