se.datadosen.jalbum.event
Interface JAlbumListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
JAlbumAdapter

public interface JAlbumListener
extends java.util.EventListener

Listener interface to be implemented by classes interrested in monitoring the lifecycle of a skin UI Skin developers are _STRONGLY_ adviced to subclass the JAlbumAdapter in order to monitor events as new methods probably will be added here.


Method Summary
 void albumCreationFinished(JAlbumEvent e)
           
 void albumCreationStarted(JAlbumEvent e)
           
 void skinChanged(JAlbumEvent e)
          This allows skins to do cleanup before they are unloaded.
 void skinUIDisplayed(JAlbumEvent e)
           
 void skinUIHidden(JAlbumEvent e)
           
 void styleChanged(JAlbumEvent e)
          This allows UI designers to adjust their user interface according to the selected style
 

Method Detail

skinUIDisplayed

void skinUIDisplayed(JAlbumEvent e)

skinUIHidden

void skinUIHidden(JAlbumEvent e)

styleChanged

void styleChanged(JAlbumEvent e)
This allows UI designers to adjust their user interface according to the selected style

Parameters:
e - JAlbumEvent

skinChanged

void skinChanged(JAlbumEvent e)
This allows skins to do cleanup before they are unloaded. JAlbum will automatically remove a JAlbumListener after calling this method

Parameters:
e - JAlbumEvent

albumCreationStarted

void albumCreationStarted(JAlbumEvent e)

albumCreationFinished

void albumCreationFinished(JAlbumEvent e)