///////////////////////////////////////////////////////////////////// //******************************************************************* //Copyright (c) 2002 Cottonwood Technology Group, Inc. All Rights Reserved. //COPYRIGHT NOTICE: The existence of a copyright notice on Software //will not be construed as an admission or presumption that public disclosure //of Software or any trade secrets associated with Software has occurred //or is permitted. //******************************************************************* //PROPRIETARY NOTICE: The source code contained in this listing is a //proprietary confidential trade secret of Cottonwood Technology Group, Inc. //Unauthorized copying, adaptation, distribution, use, or display is prohibited. //******************************************************************* ///////////////////////////////////////////////////////////////////// //$Header$ ///////////////////////////////////////////////////////////////////// // //$Log$ // ///////////////////////////////////////////////////////////////////// import java.io.Serializable; import java.util.Enumeration; import java.util.Iterator; /** * @author Charles Hasegawa */ public class BugHunt implements Serializable, Cloneable, Enumeration, Comparable, Iterator { /** * @see java.util.Enumeration#hasMoreElements() */ public boolean hasMoreElements() { return false; } /** * @see java.util.Enumeration#nextElement() */ public Object nextElement() { return null; } /** * @see java.lang.Comparable#compareTo(java.lang.Object) */ public int compareTo(Object o) { return 0; } /** * @see java.util.Iterator#hasNext() */ public boolean hasNext() { return false; } /** * @see java.util.Iterator#next() */ public Object next() { return null; } /** * @see java.util.Iterator#remove() */ public void remove() { } /** * @see java.lang.Object#clone() */ protected Object clone() throws CloneNotSupportedException { return super.clone(); } /** * @see java.lang.Object#equals(java.lang.Object) */ public boolean equals(Object obj) { return super.equals(obj); } /** * @see java.lang.Object#finalize() */ protected void finalize() throws Throwable { super.finalize(); } /** * @see java.lang.Object#hashCode() */ public int hashCode() { return super.hashCode(); } /** * @see java.lang.Object#toString() */ public String toString() { return super.toString(); } }