| | |
| | | |
| | | private LinkedHashSet<T> monitoringAttributes; |
| | | |
| | | private boolean isCancelled = true; |
| | | private boolean isCanceled = true; |
| | | |
| | | // Note: the order of the checkboxes and the elements in the Attributes |
| | | // enumeration will be the same. |
| | |
| | | { |
| | | if (visible) |
| | | { |
| | | isCancelled = true; |
| | | isCanceled = true; |
| | | } |
| | | } |
| | | |
| | |
| | | } |
| | | else |
| | | { |
| | | isCancelled = false; |
| | | isCanceled = false; |
| | | super.closeClicked(); |
| | | } |
| | | } |
| | |
| | | * @return <CODE>true</CODE> if the user closed the dialog by cancelling it |
| | | * and <CODE>false</CODE> otherwise. |
| | | */ |
| | | public boolean isCancelled() |
| | | public boolean isCanceled() |
| | | { |
| | | return isCancelled; |
| | | return isCanceled; |
| | | } |
| | | |
| | | /** |