]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.common/src/org/simantics/db/common/procedure/single/StagedSingleSetListener.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / procedure / single / StagedSingleSetListener.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.db.common.procedure.single;\r
13 \r
14 import java.util.HashSet;\r
15 import java.util.Set;\r
16 \r
17 import org.simantics.db.procedure.Listener;\r
18 \r
19 abstract public class StagedSingleSetListener<T> implements Listener<Set<T>>{\r
20     \r
21     private Set<T> previous = null;\r
22     \r
23     public void start(Set<T> items) {}\r
24     public void add(T item) {}\r
25     public void remove(T item) {}\r
26     \r
27     @Override\r
28     public synchronized void execute(final Set<T> result) {\r
29         \r
30         if(previous == null) {\r
31 \r
32             start(result);\r
33 \r
34         } else {\r
35 \r
36             HashSet<T> added = new HashSet<T>(result);\r
37             added.removeAll(previous);\r
38             HashSet<T> removed = new HashSet<T>(previous);\r
39             removed.removeAll(result);\r
40 \r
41             for(T t : added) add(t);\r
42             for(T t : removed) remove(t);\r
43 \r
44         }\r
45 \r
46         previous = result;\r
47         \r
48     }\r
49     \r
50 }\r