Ejemplo n.º 1
0
 /* (non-Javadoc)
  * @see de.jwic.base.Control#destroy()
  */
 public void destroy() {
   // remove the listener from all actions
   for (Iterator<IAction> it = actionMap.values().iterator(); it.hasNext(); ) {
     IAction action = it.next();
     action.removePropertyChangeListener(actionListener);
   }
   super.destroy();
 }