Ejemplo n.º 1
0
 public void gruenGedrueckt() {
   xWeit = this.getSize().width;
   yHoch = this.getSize().height;
   RehaEvent evt = new RehaEvent(this);
   evt.setDetails(this.getName(), "#ICONIFIED");
   evt.setRehaEvent("REHAINTERNAL");
   RehaEventClass.fireRehaEvent(evt);
   isIcon = true;
 }
Ejemplo n.º 2
0
 public void rotGedrueckt() {
   if (doNotClose) {
     return;
   }
   RehaEvent evt = new RehaEvent(this);
   evt.setDetails(this.getName(), "#FRAMESCHLIESSEN");
   evt.setRehaEvent("REHAINTERNAL");
   RehaEventClass.fireRehaEvent(evt);
   this.dispose();
 }