public class Dialog extends Frame {
private static class DialogStateListenerList extends ListenerList<DialogStateListener>
implements DialogStateListener {
@Override
public Vote previewDialogClose(Dialog dialog, boolean result) {
Vote vote = Vote.APPROVE;
for (DialogStateListener listener : this) {
vote = vote.tally(listener.previewDialogClose(dialog, result));
}
return vote;
}