Ejemplo n.º 1
0
 /**
  * 前画面の情報から初期設定します。
  *
  * @param affair 前画面の業務情報
  */
 protected void setBackAffair(ACAffairInfo affair) {
   if (affair == null) {
     back.setToolTipText("メインメニューへ戻ります。");
   } else {
     back.setToolTipText(affair.getTitle() + "へ戻ります。");
   }
 }
 public ACSplashable createSplash(ACAffairInfo newAffair) throws Exception {
   if (splash == null) {
     splash = new ACSplash();
     splash.setIconPathes(getSplashFilePathes());
     splash.refreshSize(getSplashWindowSize());
   }
   if (!splash.isVisible()) {
     splash.showModaless(newAffair.getTitle());
   }
   return splash;
 }