Added missing @Override annotations with Eclipse
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user