view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/CalculationMessage.java @ 1937:f07d64d5cbe1

'W auf freier Strecke' calculation. Fetch corresponding Qs for given Ws from the WST model flys-artifacts/trunk@3318 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 25 Nov 2011 15:50:31 +0000
parents a470b7c3b165
children 4bd3d8bbb60c
line wrap: on
line source
package de.intevation.flys.artifacts.model;

import de.intevation.artifacts.Message;


public class CalculationMessage implements Message {

    protected String message;
    protected int    steps;
    protected int    currentStep;


    public CalculationMessage() {
    }


    public CalculationMessage(int steps, int currentStep, String message) {
        this.steps       = steps;
        this.currentStep = currentStep;
        this.message     = message;
    }


    public int getSteps() {
        return steps;
    }


    public int getCurrentStep() {
        return currentStep;
    }


    public String getMessage() {
        return message;
    }


    @Override
    public String getText() {
        return
            String.valueOf(currentStep) + "/" + String.valueOf(steps) +
            " - " + getMessage();
    }
}

http://dive4elements.wald.intevation.org