home *** CD-ROM | disk | FTP | other *** search
- package java.util;
-
- import java.io.Serializable;
-
- class Collections$SingletonSet extends AbstractSet implements Serializable {
- private static final long serialVersionUID = 3193687207550431679L;
- private Object element;
-
- Collections$SingletonSet(Object var1) {
- this.element = var1;
- }
-
- public Iterator iterator() {
- return new Collections.5(this);
- }
-
- public int size() {
- return 1;
- }
-
- public boolean contains(Object var1) {
- return Collections.access$100(var1, this.element);
- }
-
- // $FF: synthetic method
- static Object access$500(Collections$SingletonSet var0) {
- return var0.element;
- }
- }
-