Skip to content
Snippets Groups Projects
FastVector.java 2.8 KiB
Newer Older
  • Learn to ignore specific revisions
  • tjc's avatar
    tjc committed
    /* FastVector.java
     *
     * created: Sun Feb 20 2000
     *
     * This file is part of Artemis
    
    tjc's avatar
    tjc committed
     * Copyright (C) 2000  Genome Research Limited
    
    tjc's avatar
    tjc committed
     * This program is free software; you can redistribute it and/or
     * modify it under the terms of the GNU General Public License
     * as published by the Free Software Foundation; either version 2
     * of the License, or (at your option) any later version.
    
    tjc's avatar
    tjc committed
     * This program is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     * GNU General Public License for more details.
    
    tjc's avatar
    tjc committed
     * You should have received a copy of the GNU General Public License
     * along with this program; if not, write to the Free Software
     * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
     *
    
     * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/util/FastVector.java,v 1.4 2006-08-09 16:35:31 tjc Exp $
    
    tjc's avatar
    tjc committed
     */
    
    package uk.ac.sanger.artemis.util;
    
    import java.util.ArrayList;
    import java.util.Comparator;
    import java.util.Collections;
    
    /**
     *  This class implements a Vector of Objects with a fast version of
     *  contains().
     *
     *  @author Kim Rutherford <kmr@sanger.ac.uk>
    
     *  @version $Id: FastVector.java,v 1.4 2006-08-09 16:35:31 tjc Exp $
    
    tjc's avatar
    tjc committed
     *
     **/
    
    
    public class FastVector extends ArrayList
    
    tjc's avatar
    tjc committed
    {
    
    tjc's avatar
    tjc committed
      /**
    
    tjc's avatar
    tjc committed
       *  Performs the same function as Vector.addElement()
    
    tjc's avatar
    tjc committed
       */
    
      public boolean add(Object object)
    
    tjc's avatar
    tjc committed
      {
    
    tjc's avatar
    tjc committed
          throw new Error("internal error - adding a null object");
    
    tjc's avatar
    tjc committed
        else if(contains(object))
          throw new Error("internal error - object added a second time");
    
    tjc's avatar
    tjc committed
    
    
        return super.add(object);
    
    tjc's avatar
    tjc committed
      }
    
      /**
    
    tjc's avatar
    tjc committed
       *  Performs the same function as Vector.lastElement()
    
    tjc's avatar
    tjc committed
       **/
    
      public Object lastElement()
    
    tjc's avatar
    tjc committed
      {
    
        return (Object)get(size() - 1);
    
    tjc's avatar
    tjc committed
      }
    
    tjc's avatar
    tjc committed
      /**
       *  Insert an Object after another.
       *  @param old_object The new_object will be inserted after this object
       *    or at the start if old_object isn't in the vector.
       *  @param new_object The new object to insert.
       **/
    
      public void insertElementAfter(Object old_object, Object new_object)
    
    tjc's avatar
    tjc committed
      {
        final int old_object_index = indexOf(old_object);
    
    
        if(old_object_index == -1)
    
          add(0, new_object);
    
          add(old_object_index + 1, new_object);
    
    tjc's avatar
    tjc committed
      }
    
      /**
    
    tjc's avatar
    tjc committed
       *  Replace the Object at the given index. (Performs the same function as
    
    tjc's avatar
    tjc committed
       *  Vector.elementAt())
       **/
    
      public void setElementAt(final Object object, final int index)
    
    tjc's avatar
    tjc committed
      {
    
        remove(index);
        add(index, object);
    
    tjc's avatar
    tjc committed
      }
    
      /**
       *  Return a sorted copy of this vector.
       *  @param cmp The returned vector will be sorted with this Comparator.
       **/
    
      public FastVector mysort(final Comparator cmp)
    
    tjc's avatar
    tjc committed
      {
        final FastVector return_vector = (FastVector)clone();
    
        Collections.sort(return_vector, cmp);
    
    tjc's avatar
    tjc committed
        return return_vector;
      }
    
    }