Files
VisualSapfor/src/_VisualDVM/Passes/All/SaveBugReportExecutor.java

20 lines
705 B
Java
Raw Normal View History

2024-10-14 12:14:01 +03:00
package _VisualDVM.Passes.All;
import _VisualDVM.Global;
2023-09-17 22:13:42 +03:00
public class SaveBugReportExecutor extends UpdateBugReportField {
@Override
public String getIconPath() {
return "/Common/icons/Apply.png";
2023-09-17 22:13:42 +03:00
}
@Override
public String getButtonText() {
return "";
}
@Override
protected boolean canStart(Object... args) throws Exception {
return Global.componentsServer.db.subscribers.getUI().CheckCurrent(Log) &&
super.canStart("executor", Global.componentsServer.db.subscribers.getUI().getCurrent().name,
"executor_address", Global.componentsServer.db.subscribers.getUI().getCurrent().address
2023-09-17 22:13:42 +03:00
);
}
}