ComparableArrayList.java :  » Scripting » Pnuts » org » pnuts » util » Java Open Source

Java Open Source » Scripting » Pnuts 
Pnuts » org » pnuts » util » ComparableArrayList.java
/*
 * ComparableArrayList.java
 *
 * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
 *
 * See the file "LICENSE.txt" for information on usage and redistribution
 * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 */
package org.pnuts.util;

import java.util.*;
import pnuts.lang.Runtime;

public class ComparableArrayList extends ArrayList implements Comparable {

  public int compareTo(Object o) {
    return Runtime.compareObjects(this, o);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.