упорядочил папки с кодом.
This commit is contained in:
26
src/Common/Passes/All/ImportFiles.java
Normal file
26
src/Common/Passes/All/ImportFiles.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package Common.Passes.All;
|
||||
import Common.Utils.Files.VFileChooser;
|
||||
import Common.Passes.PassCode_2021;
|
||||
import Common.Passes.Pass_2021;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Arrays;
|
||||
import java.util.Vector;
|
||||
public class ImportFiles extends Pass_2021<Vector<File>> {
|
||||
VFileChooser fileChooser =
|
||||
new VFileChooser("Выберите файлы для добавления");
|
||||
@Override
|
||||
protected boolean canStart(Object... args) throws Exception {
|
||||
target = new Vector<>();
|
||||
if (args.length > 0)
|
||||
Arrays.stream(args).map(arg -> (File) arg).filter(File::isFile).forEach(file -> target.add(file));
|
||||
else
|
||||
target = fileChooser.ShowMultiDialog();
|
||||
return !target.isEmpty();
|
||||
}
|
||||
@Override
|
||||
protected void body() throws Exception {
|
||||
for (File file : target)
|
||||
passes.get(PassCode_2021.AddFile).Do(file);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user