示例#1
0
    //
    // Popup methods
    //
    public void hide() {
      super.hide();

      Container component = (Container) getComponent();

      component.removeAll();
      recycleLightWeightPopup(this);
    }
示例#2
0
 public void hide() {
   super.hide();
   rootPane.getContentPane().removeAll();
   recycleMediumWeightPopup(this);
 }