mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

ludovicp
31.16.2010 85811b64468e9b7a876bd352a0299b904a53a3fb
opends/src/guitools/org/opends/guitools/controlpanel/ui/MonitoringAttributesViewPanel.java
@@ -67,7 +67,7 @@
 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.
@@ -293,7 +293,7 @@
 {
   if (visible)
   {
     isCancelled = true;
     isCanceled = true;
   }
 }
@@ -321,7 +321,7 @@
   }
   else
   {
     isCancelled = false;
     isCanceled = false;
     super.closeClicked();
   }
 }
@@ -340,9 +340,9 @@
  * @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;
 }
 /**