# HG changeset patch # User Raimund Renkert # Date 1339671068 0 # Node ID 82043c09a6594f5b2a71b696acf1124feda653c1 # Parent 2fdeb239bbd256122200303ab5b60723f1f56ca9 Add all events to the list of selected events in fix analysis. flys-client/trunk@4660 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r 2fdeb239bbd2 -r 82043c09a659 flys-client/ChangeLog --- a/flys-client/ChangeLog Thu Jun 14 10:30:10 2012 +0000 +++ b/flys-client/ChangeLog Thu Jun 14 10:51:08 2012 +0000 @@ -1,3 +1,8 @@ +2012-06-14 Raimund Renkert + + * src/main/java/de/intevation/flys/client/client/ui/fixation/FixEventSelect.java: + Add all events to the list of selected events. + 2012-06-14 Raimund Renkert * src/main/java/de/intevation/flys/client/client/ui/fixation/FixationPanel.java: diff -r 2fdeb239bbd2 -r 82043c09a659 flys-client/src/main/java/de/intevation/flys/client/client/ui/fixation/FixEventSelect.java --- a/flys-client/src/main/java/de/intevation/flys/client/client/ui/fixation/FixEventSelect.java Thu Jun 14 10:30:10 2012 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/ui/fixation/FixEventSelect.java Thu Jun 14 10:51:08 2012 +0000 @@ -18,6 +18,7 @@ import de.intevation.flys.client.shared.model.DataList; import de.intevation.flys.client.shared.model.IntDataItem; import de.intevation.flys.client.shared.model.IntegerArrayData; +import de.intevation.flys.client.shared.model.FixingsOverviewInfo.FixEvent; import de.intevation.flys.client.client.services.FixingsOverviewService; import de.intevation.flys.client.client.services.FixingsOverviewServiceAsync; @@ -135,7 +136,12 @@ } - public void success() {} + public void success() { + List fe = fixInfo.getEvents(); + for (int i = 0; i < fe.size(); i++) { + events.add (fe.get(i).getCId()); + } + } public void dumpGWT(String cid) { GWT.log("Setting values for cId: " + cid);