Package adams.gui.event
Interface RecentItemListener<M,T>
-
- Type Parameters:
M- the type of menuT- the type of item
public interface RecentItemListener<M,T>Interface for classes that listen to events ofAbstractRecentItemsHandler.- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
AbstractRecentItemsHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrecentItemAdded(RecentItemEvent<M,T> e)Gets called in case a recent item got added.voidrecentItemSelected(RecentItemEvent<M,T> e)Gets called in case a recent item got selected.
-
-
-
Method Detail
-
recentItemAdded
void recentItemAdded(RecentItemEvent<M,T> e)
Gets called in case a recent item got added.- Parameters:
e- the event
-
recentItemSelected
void recentItemSelected(RecentItemEvent<M,T> e)
Gets called in case a recent item got selected.- Parameters:
e- the event
-
-