Files
VisualSapfor/src/_VisualDVM/Passes/All/AppendBugReportDescription.java
2024-10-15 13:35:33 +03:00

15 lines
591 B
Java

package _VisualDVM.Passes.All;
import _VisualDVM.Global;
public class AppendBugReportDescription extends AppendBugReportField {
@Override
protected boolean canStart(Object... args) throws Exception {
return super.canStart("description",
Global.mainModule.getUI().getMainWindow().getCallbackWindow().getBugReportDescriptionAdditionText());
}
@Override
protected void performDone() throws Exception {
super.performDone();
Global.mainModule.getUI().getMainWindow().getCallbackWindow().ClearBugReportDescriptionAdditionText();
}
}