~tapaal-contributor/tapaal/add-java-info-1890600

« back to all changes in this revision

Viewing changes to src/dk/aau/cs/gui/undo/AddFileBatchProcessingCommand.java

merged in lp:~yrke/tapaal/removeSpecialBatchLoading removing special loading of nets in batch processing

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
import java.util.List;
10
10
 
11
11
public class AddFileBatchProcessingCommand extends Command{
12
 
    private DefaultListModel<File> listModel;
 
12
    private final DefaultListModel<File> listModel;
13
13
    List<File> files;
14
14
    File file;
15
 
    private BatchProcessingDialog dialog;
 
15
    private final BatchProcessingDialog dialog;
16
16
    public AddFileBatchProcessingCommand(DefaultListModel<File> listModel, File file, List<File> files, BatchProcessingDialog dialog){
17
17
        this.listModel = listModel;
18
18
        this.file = file;