]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.utils.datastructures/src/org/simantics/utils/datastructures/EssentiallyIterableCollection.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.utils.datastructures / src / org / simantics / utils / datastructures / EssentiallyIterableCollection.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.utils.datastructures;\r
13 \r
14 import java.util.Collection;\r
15 import java.util.Iterator;\r
16 \r
17 \r
18 /**\r
19  * Immutable Collection adapter that uses iterator method to implement all \r
20  * its methods. \r
21  */\r
22 public abstract class EssentiallyIterableCollection<E> extends ImmutableCollection<E> {\r
23 \r
24     @Override\r
25     public boolean contains(Object o) {\r
26         Iterator<E> iterator = iterator();\r
27         while(iterator.hasNext()) \r
28             if(iterator.next().equals(o))\r
29                 return true;\r
30         return false;\r
31     }\r
32 \r
33     @Override\r
34     public boolean containsAll(Collection<?> c) {\r
35         for(Object o : c)\r
36             if(!contains(o))\r
37                 return false;\r
38         return true;\r
39     }\r
40 \r
41     @Override\r
42     public boolean isEmpty() {\r
43         return iterator().hasNext();\r
44     }\r
45 \r
46     @Override\r
47     public int size() {\r
48         int count = 0;\r
49         Iterator<E> iterator = iterator();\r
50         while(iterator.hasNext()) {\r
51             ++ count;\r
52             iterator.next();\r
53         }\r
54         return count;\r
55     }\r
56 \r
57 }\r