17 lines
523 B
Java
17 lines
523 B
Java
package _VisualDVM.Passes.All;
|
|
import _VisualDVM.Global;
|
|
public class SaveBugReportDescription extends UpdateBugReportField {
|
|
@Override
|
|
public String getIconPath() {
|
|
return "/Common/icons/Save.png";
|
|
}
|
|
@Override
|
|
public String getButtonText() {
|
|
return "";
|
|
}
|
|
@Override
|
|
protected boolean canStart(Object... args) throws Exception {
|
|
return super.canStart("description", Global.mainModule.getUI().getMainWindow().getCallbackWindow().getBugReportDescriptionText());
|
|
}
|
|
}
|