Coverage Report - net.wotonomy.datastore.DuplicateList
 
Classes in this File Line Coverage Branch Coverage Complexity
DuplicateList
0% 
N/A 
0
 
 1  
 /*
 2  
 Wotonomy: OpenStep design patterns for pure Java applications.
 3  
 Copyright (C) 2000 Michael Powers
 4  
 
 5  
 This library is free software; you can redistribute it and/or
 6  
 modify it under the terms of the GNU Lesser General Public
 7  
 License as published by the Free Software Foundation; either
 8  
 version 2.1 of the License, or (at your option) any later version.
 9  
 
 10  
 This library is distributed in the hope that it will be useful,
 11  
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 12  
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 13  
 Lesser General Public License for more details.
 14  
 
 15  
 You should have received a copy of the GNU Lesser General Public
 16  
 License along with this library; if not, see http://www.gnu.org
 17  
 */
 18  
 
 19  
 package net.wotonomy.datastore;
 20  
 
 21  
 import java.util.LinkedList;
 22  
 
 23  
 /**
 24  
 * DuplicateList is a marker class used to store values
 25  
 * with duplicate keys in the DataIndex TreeMap.
 26  
 */
 27  0
 public class DuplicateList extends LinkedList
 28  
 {
 29  
 }
 30  
 
 31  
 /*
 32  
  * $Log$
 33  
  * Revision 1.2  2006/02/19 16:26:19  cgruber
 34  
  * Move non-unit-test code to tests project
 35  
  * Fix up code to work with proper imports
 36  
  * Fix maven dependencies.
 37  
  *
 38  
  * Revision 1.1  2006/02/16 13:18:56  cgruber
 39  
  * Check in all sources in eclipse-friendly maven-enabled packages.
 40  
  *
 41  
  * Revision 1.1.1.1  2000/12/21 15:47:14  mpowers
 42  
  * Contributing wotonomy.
 43  
  *
 44  
  * Revision 1.2  2000/12/20 16:25:36  michael
 45  
  * Added log to all files.
 46  
  *
 47  
  *
 48  
  */
 49