public AbstractImportBudgetAction(String actionString,BudgetType aBudgetType) {
super(actionString);
budgetType=aBudgetType;
}
public void actionPerformed(ActionEvent e) {
Util.createDialogAndRunInThread(new ProductionBudgetImportHandler(
ProTransMain.PRO_TRANS_MAIN, null,budgetType));
}