Coverage Report - org.argouml.util.SingleElementIterator
 
Classes in this File Line Coverage Branch Coverage Complexity
SingleElementIterator
0%
0/12
0%
0/4
2.5
 
 1  
 /* $Id: SingleElementIterator.java 17887 2010-01-12 21:17:18Z linus $
 2  
  *****************************************************************************
 3  
  * Copyright (c) 2009 Contributors - see below
 4  
  * All rights reserved. This program and the accompanying materials
 5  
  * are made available under the terms of the Eclipse Public License v1.0
 6  
  * which accompanies this distribution, and is available at
 7  
  * http://www.eclipse.org/legal/epl-v10.html
 8  
  *
 9  
  * Contributors:
 10  
  *    tfmorris
 11  
  *****************************************************************************
 12  
  *
 13  
  * Some portions of this file was previously release using the BSD License:
 14  
  */
 15  
 
 16  
 // Copyright (c) 2007 The Regents of the University of California. All
 17  
 // Rights Reserved. Permission to use, copy, modify, and distribute this
 18  
 // software and its documentation without fee, and without a written
 19  
 // agreement is hereby granted, provided that the above copyright notice
 20  
 // and this paragraph appear in all copies. This software program and
 21  
 // documentation are copyrighted by The Regents of the University of
 22  
 // California. The software program and documentation are supplied "AS
 23  
 // IS", without any accompanying services from The Regents. The Regents
 24  
 // does not warrant that the operation of the program will be
 25  
 // uninterrupted or error-free. The end-user understands that the program
 26  
 // was developed for research purposes and is advised not to rely
 27  
 // exclusively on the program for any reason. IN NO EVENT SHALL THE
 28  
 // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
 29  
 // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS,
 30  
 // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
 31  
 // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF
 32  
 // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY
 33  
 // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 34  
 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE
 35  
 // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF
 36  
 // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT,
 37  
 // UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 38  
 
 39  
 package org.argouml.util;
 40  
 
 41  
 import java.util.Iterator;
 42  
 import java.util.NoSuchElementException;
 43  
 
 44  
 /**
 45  
  * A simple iterator wrapper for a single object. Designed for for use where the
 46  
  * API requires an iterator, but we've only got a single object and don't want
 47  
  * the overhead of creating a collection just so that we can iterate over its
 48  
  * single element.
 49  
  * 
 50  
  * @param <T> type of object to be iterated over
 51  
  * @author Tom Morris <tfmorris@gmail.com>
 52  
  */
 53  
 public class SingleElementIterator<T> implements Iterator {
 54  
 
 55  0
     private boolean done = false;
 56  
     private T target;
 57  
     
 58  0
     public SingleElementIterator(T o) {
 59  0
         target = o;
 60  0
     }
 61  
     
 62  
     public boolean hasNext() {
 63  0
         if (!done) {
 64  0
             return true;
 65  
         } 
 66  0
         return false;
 67  
     }
 68  
 
 69  
     public T next() {
 70  0
         if (!done) {
 71  0
             done = true;
 72  0
             return target;
 73  
         }
 74  0
         throw new NoSuchElementException();
 75  
     }
 76  
 
 77  
     public void remove() {
 78  0
         throw new UnsupportedOperationException();
 79  
     }
 80  
 
 81  
 }