Package diva.gui
Class ViewAdapter
- java.lang.Object
-
- diva.gui.ViewAdapter
-
- All Implemented Interfaces:
ViewListener,java.util.EventListener
public class ViewAdapter extends java.lang.Object implements ViewListener
An adapter for view listener, containing empty method implementations.- Version:
- $Id$
- Author:
- John Reekie
-
-
Constructor Summary
Constructors Constructor Description ViewAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidviewClosed(ViewEvent e)Invoked when the view has been closed.voidviewClosing(ViewEvent e)Invoked when the view is about to be closed.voidviewDeselected(ViewEvent e)Invoked when the view has been de-selected.voidviewHidden(ViewEvent e)Invoked when the view has been hidden.voidviewMoved(ViewEvent e)Invoked when the view movesvoidviewResized(ViewEvent e)Invoked when the view was resizedvoidviewSelected(ViewEvent e)Invoked when the view has been selected.voidviewShown(ViewEvent e)Invoked when the view has been shown.
-
-
-
Method Detail
-
viewClosing
public void viewClosing(ViewEvent e)
Invoked when the view is about to be closed.- Specified by:
viewClosingin interfaceViewListener
-
viewClosed
public void viewClosed(ViewEvent e)
Invoked when the view has been closed.- Specified by:
viewClosedin interfaceViewListener
-
viewDeselected
public void viewDeselected(ViewEvent e)
Invoked when the view has been de-selected. Typically, this happens when the view no longer is the front-most view or when it loses the focus.- Specified by:
viewDeselectedin interfaceViewListener
-
viewHidden
public void viewHidden(ViewEvent e)
Invoked when the view has been hidden. This might happen because another view is placed over the top of it, or because an internal frame is iconified.- Specified by:
viewHiddenin interfaceViewListener
-
viewMoved
public void viewMoved(ViewEvent e)
Invoked when the view moves- Specified by:
viewMovedin interfaceViewListener
-
viewResized
public void viewResized(ViewEvent e)
Invoked when the view was resized- Specified by:
viewResizedin interfaceViewListener
-
viewSelected
public void viewSelected(ViewEvent e)
Invoked when the view has been selected. Typically, this happens when the view becomes the front-most view or when it gets the focus.- Specified by:
viewSelectedin interfaceViewListener
-
viewShown
public void viewShown(ViewEvent e)
Invoked when the view has been shown. This might happen because an internal frame is deiconified, for example.- Specified by:
viewShownin interfaceViewListener
-
-