01: /*
02: * ComparableArrayList.java
03: *
04: * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
05: *
06: * See the file "LICENSE.txt" for information on usage and redistribution
07: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
08: */
09: package org.pnuts.util;
10:
11: import java.util.*;
12: import pnuts.lang.Runtime;
13:
14: public class ComparableArrayList extends ArrayList implements
15: Comparable {
16:
17: public int compareTo(Object o) {
18: return Runtime.compareObjects(this, o);
19: }
20: }
|