Package com.im.commons.ui
Interface Dialogs.ValidatingPane
-
- Enclosing class:
- Dialogs
public static interface Dialogs.ValidatingPane
Dialog contents which is validated. The listener listens to changes ofNotifyDescriptor.PROP_VALID
to detect whether the dialog can be submitted.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addPropertyChangeListener(java.beans.PropertyChangeListener listener)
boolean
isDialogPaneValid()
Named not simply isValid in order to not clash with JComponent#isValid().void
removePropertyChangeListener(java.beans.PropertyChangeListener listener)
-
-
-
Method Detail
-
addPropertyChangeListener
void addPropertyChangeListener(java.beans.PropertyChangeListener listener)
-
removePropertyChangeListener
void removePropertyChangeListener(java.beans.PropertyChangeListener listener)
-
isDialogPaneValid
boolean isDialogPaneValid()
Named not simply isValid in order to not clash with JComponent#isValid().- Returns:
- whether the dialog can be submitted
-
-