no message
This commit is contained in:
18
src/_VisualDVM/Visual/Windows/WelcomeForm.java
Normal file
18
src/_VisualDVM/Visual/Windows/WelcomeForm.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package _VisualDVM.Visual.Windows;
|
||||
import Common.Visual.DragDrop.FileDrop;
|
||||
import Visual_DVM_2021.Passes.PassCode_2021;
|
||||
import Visual_DVM_2021.Passes.Pass_2021;
|
||||
|
||||
import javax.swing.*;
|
||||
public class WelcomeForm {
|
||||
public JPanel content;
|
||||
private JTextArea WelcomeText;
|
||||
public WelcomeForm() {
|
||||
// end filesDropped
|
||||
new FileDrop(System.out, WelcomeText, files -> {
|
||||
if (files.length > 0) {
|
||||
Pass_2021.passes.get(PassCode_2021.OpenCurrentProject).Do(files[0]);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user