упорядочил папки с кодом.
This commit is contained in:
25
src/Common/Passes/ChangeFilePass.java
Normal file
25
src/Common/Passes/ChangeFilePass.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package Common.Passes;
|
||||
import Common.Current;
|
||||
import Common.UI.Windows.Dialog.Text.FileNameForm;
|
||||
import ProjectData.Project.db_project_info;
|
||||
|
||||
import javax.swing.tree.DefaultMutableTreeNode;
|
||||
import java.io.File;
|
||||
public abstract class ChangeFilePass<T> extends Pass_2021<T> {
|
||||
protected File target_dir;
|
||||
protected File dst;
|
||||
protected String fileName;
|
||||
protected FileNameForm ff;
|
||||
protected DefaultMutableTreeNode parent_node;
|
||||
protected DefaultMutableTreeNode dst_node;
|
||||
protected db_project_info project;
|
||||
protected void resetArgs() {
|
||||
target_dir = null;
|
||||
dst = null;
|
||||
fileName = null;
|
||||
ff = null;
|
||||
parent_node = null;
|
||||
dst_node = null;
|
||||
project = Current.getProject();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user