/** @see java.awt.event.ComponentListener#componentShown(java.awt.event.ComponentEvent) */
    @Override
    public void componentShown(ComponentEvent evt) {
      Bunt bunt = deductBatchViewHandler.getSelectedBatch();

      if (lastBunt == null || !lastBunt.equals(bunt)) {
        lastBunt = bunt;
        if (bunt != null) {
          GuiUtil.setWaitCursor(FrafMain.getInstance());
          loadImport(bunt);
          GuiUtil.setDefaultCursor(FrafMain.getInstance());
        }
      }
    }
 public AvdelingSikkerhetVDAOTest(boolean isStandalone) {
   BaseManager.setTest(true);
   FrafMain.setStandalone(isStandalone);
 }
Example #3
0
 public InvoiceTest3(boolean isStandalone) {
   BaseManager.setTest(true);
   FrafMain.setStandalone(isStandalone);
 }