| javax.swing.JDialog com.jgoodies.binding.tutorial.manager.AlbumEditorDialog
Method Summary | |
public void | close() Closes the dialog: releases obsolete bindings, and disposes the dialog,
which in turn releases all required OS resources. | public boolean | hasBeenCanceled() Checks and answers whether the dialog has been canceled. | public void | open() Builds the dialog content, marks it as not canceled and makes it visible. |
AlbumEditorDialog | public AlbumEditorDialog(Frame parent, Album album)(Code) | | Constructs an AlbumEditorDialog for the given Album.
Parameters: parent - this dialog's parent frame Parameters: album - the Album to be edited |
close | public void close()(Code) | | Closes the dialog: releases obsolete bindings, and disposes the dialog,
which in turn releases all required OS resources.
|
hasBeenCanceled | public boolean hasBeenCanceled()(Code) | | Checks and answers whether the dialog has been canceled.
This indicator is set in #doAccept and #doCancel.
true indicates that the dialog has been canceled |
open | public void open()(Code) | | Builds the dialog content, marks it as not canceled and makes it visible.
|
|
|