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

15 lines
591 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 AppendBugReportDescription extends AppendBugReportField {
@Override
protected boolean canStart(Object... args) throws Exception {
return super.canStart("description",
Global.mainModule.getUI().getMainWindow().getCallbackWindow().getBugReportDescriptionAdditionText());
2023-09-17 22:13:42 +03:00
}
@Override
protected void performDone() throws Exception {
super.performDone();
Global.mainModule.getUI().getMainWindow().getCallbackWindow().ClearBugReportDescriptionAdditionText();
2023-09-17 22:13:42 +03:00
}
}