Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/CalculationMessage.java @ 2089:0da8874bd378
Added initial state to map artifact to be able to advance and step back.
The map artifact overrides describe() to have the complete UI information in the
describe response document.
flys-artifacts/trunk@3613 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 06 Jan 2012 12:02:10 +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(); } }