no message
This commit is contained in:
25
src/Visual_DVM_2021/Passes/All/ShowSapforCompilationOut.java
Normal file
25
src/Visual_DVM_2021/Passes/All/ShowSapforCompilationOut.java
Normal file
@@ -0,0 +1,25 @@
|
||||
package Visual_DVM_2021.Passes.All;
|
||||
import Common.Constants;
|
||||
import Common.Current;
|
||||
import GlobalData.RemoteFile.RemoteFile;
|
||||
public class ShowSapforCompilationOut extends ShowTestingServerFile{
|
||||
@Override
|
||||
protected int getTimeout() {
|
||||
return super.getTimeout();
|
||||
}
|
||||
@Override
|
||||
public String getIconPath() {
|
||||
return "/icons/CompilationOutput.png";
|
||||
}
|
||||
@Override
|
||||
public String getButtonText() {
|
||||
return "";
|
||||
}
|
||||
@Override
|
||||
protected boolean canStart(Object... args) throws Exception {
|
||||
if (!Current.Check(Log,Current.ServerSapfor)){
|
||||
return false;
|
||||
}
|
||||
return super.canStart("Поток вывода", new RemoteFile(Current.getServerSapfor().home_path, Constants.out_file));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user