comparison flys-client/src/main/java/de/intevation/flys/client/client/event/CollectionChangeEvent.java @ 18:3c85259bd92a

Implemented a mechanism to listen to Collection changes. flys-client/trunk@1331 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 18 Feb 2011 15:42:29 +0000
parents
children
comparison
equal deleted inserted replaced
17:6cb8aff3cd6b 18:3c85259bd92a
1 package de.intevation.flys.client.client.event;
2
3 import de.intevation.flys.client.shared.model.Collection;
4
5
6 /**
7 * This events stores references to the old collection and the new one.
8 *
9 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
10 */
11 public class CollectionChangeEvent {
12
13 protected Collection oldCollection;
14 protected Collection newCollection;
15
16 public CollectionChangeEvent(Collection old, Collection newArt) {
17 oldCollection = old;
18 newCollection = newArt;
19 }
20
21 public Collection getOldValue() {
22 return oldCollection;
23 }
24
25 public Collection getNewValue() {
26 return newCollection;
27 }
28 }
29 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org