Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/CalculationMessage.java @ 3026:65b6e27c6f25
FixA: Use new data structures in Delta W(t) exporter. Removed obsolete code.
flys-artifacts/trunk@4593 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Sascha L. Teichmann <sascha.teichmann@intevation.de> |
---|---|
date | Tue, 05 Jun 2012 16:25:51 +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(); } }