Exemplo n.º 1
0
 /**
  * Called by the AWT when this component is removed from it's parent. This stops clears the
  * currently focused component.
  */
 public void removeNotify() {
   super.removeNotify();
   if (focusedComponent == this) focusedComponent = null;
 }
Exemplo n.º 2
0
 public void removeNotify() {
   super.removeNotify();
   thread.kill();
 }
  public void removeNotify() {
    super.removeNotify();

    uninstallListeners();
    myWindow = null;
  }
Exemplo n.º 4
0
 /** {@inheritDoc} */
 public void removeNotify() {
   super.removeNotify();
 }
Exemplo n.º 5
0
 public void removeNotify() {
   scene.getView().removeComponentListener(this);
   scene.removeSceneListener(this);
   super.removeNotify();
 }