コード例 #1
0
ファイル: JRehaInternal.java プロジェクト: bomm/thera-pi
 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;
 }
コード例 #2
0
ファイル: JRehaInternal.java プロジェクト: bomm/thera-pi
 public void rotGedrueckt() {
   if (doNotClose) {
     return;
   }
   RehaEvent evt = new RehaEvent(this);
   evt.setDetails(this.getName(), "#FRAMESCHLIESSEN");
   evt.setRehaEvent("REHAINTERNAL");
   RehaEventClass.fireRehaEvent(evt);
   this.dispose();
 }