-
- Type Parameters:
T- the type of the object managed by the thumbnail.
- All Superinterfaces:
EventListener
public interface JThumbnailListener<T> extends EventListener
Anevent listenerthat enables to monitor a thumbnail.- Since:
- 1.0.8
- Version:
- 1.0.8
- Author:
- Julien Seinturier - COMEX S.A. - http://www.seinturier.fr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidthumbnailActivated(JThumbnail<T> thumbnail)The thumbnail has been activated.voidthumbnailFocused(JThumbnail<T> thumbnail)The thumbnail has been focused.voidthumbnailSelected(JThumbnail<T> thumbnail)The thumbnail has been selected.voidthumbnailUnfocused(JThumbnail<T> thumbnail)The thumbnail has been unfocused.
-
-
-
Method Detail
-
thumbnailFocused
void thumbnailFocused(JThumbnail<T> thumbnail)
The thumbnail has been focused.- Parameters:
thumbnail- the thumbnail that is the source of the event.
-
thumbnailUnfocused
void thumbnailUnfocused(JThumbnail<T> thumbnail)
The thumbnail has been unfocused.- Parameters:
thumbnail- the thumbnail that is the source of the event.
-
thumbnailSelected
void thumbnailSelected(JThumbnail<T> thumbnail)
The thumbnail has been selected.- Parameters:
thumbnail- the thumbnail that is the source of the event.
-
thumbnailActivated
void thumbnailActivated(JThumbnail<T> thumbnail)
The thumbnail has been activated.- Parameters:
thumbnail- the thumbnail that is the source of the event.
-
-