Added missing @Override annotations with Eclipse

This commit is contained in:
Andrew
2014-09-28 11:34:00 -07:00
parent b6273d9c0c
commit 8514e32f5f
92 changed files with 197 additions and 1 deletions
@@ -71,14 +71,17 @@ public class SortedList<T> implements Iterable<T>, List<T>, Cloneable {
return new Iterator<T>() {
@Override
public boolean hasNext() {
return listIterator.hasPrevious();
}
@Override
public T next() {
return listIterator.previous();
}
@Override
public void remove() {
listIterator.remove();
}
@@ -10,6 +10,7 @@ public class DefaultPriorityList<T extends IAEStack<T>> implements IPartitionLis
final static List nullList = new ArrayList();
@Override
public boolean isListed(T input)
{
return false;
@@ -17,6 +17,7 @@ public class FuzzyPriorityList<T extends IAEStack<T>> implements IPartitionList<
this.mode = mode;
}
@Override
public boolean isListed(T input)
{
Collection<T> out = list.findFuzzy( input, mode );
@@ -19,6 +19,7 @@ public class MergedPriorityList<T extends IAEStack<T>> implements IPartitionList
negative.add( list );
}
@Override
public boolean isListed(T input)
{
for (IPartitionList<T> l : negative)
@@ -12,6 +12,7 @@ public class PrecisePriorityList<T extends IAEStack<T>> implements IPartitionLis
list = in;
}
@Override
public boolean isListed(T input)
{
return list.findPrecise( input ) != null;