Package com.macrofocus.order
Interface Order<E>
-
- All Superinterfaces:
java.lang.Iterable<E>
- All Known Subinterfaces:
MutableVisibleOrder<E>,VisibleOrder<E>
- All Known Implementing Classes:
AbstractOrder,DefaultVisibleOrder
public interface Order<E> extends java.lang.Iterable<E>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddOrderListener(OrderListener<E> listener)Add a listener to the list that's notified each time a change to the order occurs.voidaddWeakOrderListener(OrderListener<E> listener)Add a listener to the list that's notified each time a change to the order occurs.Eget(int index)intindexOf(E element)Enext(E element)Eprevious(E element)voidremoveOrderListener(OrderListener<E> listener)Remove a listener to the list that's notified each time a change to the order occurs.intsize()
-
-
-
Method Detail
-
get
E get(int index)
-
size
int size()
-
indexOf
int indexOf(E element)
-
addOrderListener
void addOrderListener(OrderListener<E> listener)
Add a listener to the list that's notified each time a change to the order occurs.- Parameters:
listener- the SelectionListener
-
addWeakOrderListener
void addWeakOrderListener(OrderListener<E> listener)
Add a listener to the list that's notified each time a change to the order occurs. The listener will automatically be disposed of should no other object have a reference to it.- Parameters:
listener- the SelectionListener
-
removeOrderListener
void removeOrderListener(OrderListener<E> listener)
Remove a listener to the list that's notified each time a change to the order occurs.- Parameters:
listener- the SelectionListener
-
-