no message

This commit is contained in:
2024-05-18 23:31:45 +03:00
parent d29c2ba93c
commit fb53a4133a
10 changed files with 129 additions and 21 deletions

View 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));
}
}