Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/CalculationMessage.java @ 3814:8083f6384023
merged flys-artifacts/pre2.6-2012-01-04
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:56 +0200 |
parents | a470b7c3b165 |
children | 4bd3d8bbb60c |
comparison
equal
deleted
inserted
replaced
1491:2a00f4849738 | 3814:8083f6384023 |
---|---|
1 package de.intevation.flys.artifacts.model; | |
2 | |
3 import de.intevation.artifacts.Message; | |
4 | |
5 | |
6 public class CalculationMessage implements Message { | |
7 | |
8 protected String message; | |
9 protected int steps; | |
10 protected int currentStep; | |
11 | |
12 | |
13 public CalculationMessage() { | |
14 } | |
15 | |
16 | |
17 public CalculationMessage(int steps, int currentStep, String message) { | |
18 this.steps = steps; | |
19 this.currentStep = currentStep; | |
20 this.message = message; | |
21 } | |
22 | |
23 | |
24 public int getSteps() { | |
25 return steps; | |
26 } | |
27 | |
28 | |
29 public int getCurrentStep() { | |
30 return currentStep; | |
31 } | |
32 | |
33 | |
34 public String getMessage() { | |
35 return message; | |
36 } | |
37 | |
38 | |
39 @Override | |
40 public String getText() { | |
41 return | |
42 String.valueOf(currentStep) + "/" + String.valueOf(steps) + | |
43 " - " + getMessage(); | |
44 } | |
45 } |