no message
This commit is contained in:
26
src/_VisualDVM/Passes/All/ShowSapforCompilationOut.java
Normal file
26
src/_VisualDVM/Passes/All/ShowSapforCompilationOut.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package _VisualDVM.Passes.All;
|
||||
import _VisualDVM.Constants;
|
||||
import _VisualDVM.Current;
|
||||
import _VisualDVM.Global;
|
||||
import _VisualDVM.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 (!Global.mainModule.Check(Log,Current.ServerSapfor)){
|
||||
return false;
|
||||
}
|
||||
return super.canStart("Поток вывода", new RemoteFile(Global.mainModule.getServerSapfor().home_path, Constants.out_file));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user