Mercurial > dive4elements > river
annotate flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WQKmsResult.java @ 4402:c84630d544a1
Get rid of HorizontalLayout in MapOutputTab and use manual resizing.
The OpenLayers Map widget is now resized and positioned manually by a
ResizeHandler method. The automatic HorizontalLayout was obviously
broken in combination with the OpenLayers widget.
This should fix various layout issues with the OpenLayers Map.
author | Christian Lins <christian.lins@intevation.de> |
---|---|
date | Mon, 05 Nov 2012 15:17:58 +0100 |
parents | cc5461a16b3f |
children |
rev | line source |
---|---|
4398
cc5461a16b3f
WQKmsResult: New interface to ease Export.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
1 package de.intevation.flys.artifacts.model; |
cc5461a16b3f
WQKmsResult: New interface to ease Export.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
2 |
cc5461a16b3f
WQKmsResult: New interface to ease Export.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
3 import de.intevation.flys.artifacts.model.WQKms; |
cc5461a16b3f
WQKmsResult: New interface to ease Export.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
4 |
cc5461a16b3f
WQKmsResult: New interface to ease Export.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
5 /** A result that delivers WQKms. */ |
cc5461a16b3f
WQKmsResult: New interface to ease Export.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
6 public interface WQKmsResult { |
cc5461a16b3f
WQKmsResult: New interface to ease Export.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
7 public WQKms[] getWQKms(); |
cc5461a16b3f
WQKmsResult: New interface to ease Export.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
8 } |
cc5461a16b3f
WQKmsResult: New interface to ease Export.
Felix Wolfsteller <felix.wolfsteller@intevation.de>
parents:
diff
changeset
|
9 |