📄 commandaction.java
字号:
package net.aetherial.gis.our.auto;
import net.aetherial.gis.our.*;
import net.aetherial.gis.our.auto.extend.*;
import net.aetherial.gis.our.auto.Dialog.DialogSetPath;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2004</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class CommandAction {
private FrameOur fo = null;
private String inputPath = "";
private String outputPath = "";
public CommandAction() {
}
public CommandAction(FrameOur fo) {
this.fo = fo;
}
public void setHeader(){
SetHeader sh = new SetHeader(fo);
sh.setSavedDirectory(this.outputPath);
sh.setInputDirectory(this.inputPath);
sh.SetAllFileHeader();
sh.msg("ok");
}
public void setInputPath(String inputPath) {
this.inputPath = inputPath;
}
public void setOutputPath(String outputPath) {
this.outputPath = outputPath;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -