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
10 * VTT Technical Research Centre of Finland - initial API and implementation
\r
11 *******************************************************************************/
\r
12 package org.simantics.utils.datastructures;
\r
14 import java.util.Collection;
\r
15 import java.util.Iterator;
\r
17 public class SingletonCollection<T> extends ImmutableSet<T> {
\r
21 public SingletonCollection(T content) {
\r
22 this.content = content;
\r
26 public boolean contains(Object o) {
\r
27 return content.equals(o);
\r
31 public boolean containsAll(Collection<?> c) {
\r
33 if(!content.equals(o))
\r
39 public boolean isEmpty() {
\r
40 return content == null;
\r
43 static class SingletonIterator<T> extends ImmutableIterator<T> {
\r
47 public SingletonIterator(T content) {
\r
48 this.content = content;
\r
52 public boolean hasNext() {
\r
53 return(content != null);
\r
66 public Iterator<T> iterator() {
\r
67 return new SingletonIterator<T>(content);
\r