Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Distributed as part of mchange-commons-java v.0.2.3
*
* Copyright (C) 2012 Machinery For Change, Inc.
*
* Author: Steve Waldman
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 2.1, as
* published by the Free Software Foundation.
*
* This software 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software; see the file LICENSE. If not, write to the
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*/
package com.mchange.v1.identicator;
import java.util.*;
import com.mchange.v1.util.*;
public class IdList implements List
{
Identicator id;
List inner;
public IdList(Identicator id, List inner)
{
this.id = id;
this.inner = inner;
}
public int size()
{ return inner.size(); }
public boolean isEmpty()
{ return inner.isEmpty(); }
public boolean contains(Object o)
{
IdHashKey wrappedO = new StrongIdHashKey(o, id);
return inner.contains(o);
}
public Iterator iterator()
{
return new WrapperIterator( inner.iterator(), true )
{
protected Object transformObject(Object o)
{
if (o instanceof IdHashKey)
{
IdHashKey ik = (IdHashKey) o;
return ik.getKeyObj();
}
else //we expect that o is null then...
return o;
}
};
}
public Object[] toArray()
{ return this.toArray( new Object[ this.size() ] ); }
public Object[] toArray(Object[] space)
{ return IteratorUtils.toArray( this.iterator(), this.size(), space ); }
public boolean add(Object o)
{ return inner.add( new StrongIdHashKey( o, id ) ); }
public boolean remove(Object o)
{ return inner.remove( new StrongIdHashKey( o, id ) ); }
public boolean containsAll(Collection c)
{
Iterator ii = c.iterator();
while (ii.hasNext())
{
IdHashKey test = new StrongIdHashKey( ii.next(), id );
if (! inner.contains( test ))
return false;
}
return true;
}
public boolean addAll(Collection c)
{
Iterator ii = c.iterator();
boolean changed = false;
while (ii.hasNext())
{
IdHashKey ik = new StrongIdHashKey( ii.next(), id );
changed |= inner.add( ik );
}
return changed;
}
public boolean addAll(int i, Collection c)
{
Iterator ii = c.iterator();
while (ii.hasNext())
{
IdHashKey ik = new StrongIdHashKey( ii.next(), id );
inner.add( i, ik );
++i;
}
return (c.size() > 0);
}
public boolean removeAll(Collection c)
{
Iterator ii = c.iterator();
boolean changed = false;
while (ii.hasNext())
{
IdHashKey ik = new StrongIdHashKey( ii.next(), id );
changed |= inner.remove( ik );
}
return changed;
}
public boolean retainAll(Collection c)
{
Iterator ii = inner.iterator();
boolean changed = false;
while (ii.hasNext())
{
IdHashKey ours = (IdHashKey) ii.next();
if (! c.contains( ours.getKeyObj() ))
{
inner.remove( ours );
changed = true;
}
}
return changed;
}
public void clear()
{ inner.clear(); }
//TODO: should I make some version of this that pays attention to identicator?
public boolean equals(Object o)
{
if (o instanceof List)
return ListUtils.equivalent( this, (List) o );
else
return false;
}
public int hashCode()
{ return ListUtils.hashContents( this ); }
public Object get(int i)
{ return ((IdHashKey) inner.get(i)).getKeyObj(); }
public Object set(int i, Object o)
{
IdHashKey ik = (IdHashKey) inner.set( i, new StrongIdHashKey( o, id ) );
return ik.getKeyObj();
}
public void add(int i, Object o)
{
inner.add( i, new StrongIdHashKey( o, id ) );
}
public Object remove(int i)
{
IdHashKey ik = (IdHashKey) inner.remove(i);
return (ik == null ? null : ik.getKeyObj());
}
public int indexOf(Object o)
{ return inner.indexOf( new StrongIdHashKey( o, id ) ); }
public int lastIndexOf(Object o)
{ return inner.lastIndexOf( new StrongIdHashKey( o, id ) ); }
//TODO: make a more efficient implementation...
public ListIterator listIterator()
{ return new LinkedList(this).listIterator(); }
//TODO: make a more efficient implementation...
public ListIterator listIterator(int i)
{ return new LinkedList(this).listIterator(i); }
public List subList(int a, int b)
{ return new IdList(id, inner.subList(a, b)); }
}