18 lines
533 B
Java
18 lines
533 B
Java
package _VisualDVM.Passes.All;
|
|
import _VisualDVM.Global;
|
|
import _VisualDVM.Visual.UI;
|
|
public class SaveBugReportComment extends UpdateBugReportField {
|
|
@Override
|
|
public String getIconPath() {
|
|
return "/icons/Save.png";
|
|
}
|
|
@Override
|
|
public String getButtonText() {
|
|
return "";
|
|
}
|
|
@Override
|
|
protected boolean canStart(Object... args) throws Exception {
|
|
return super.canStart("comment", Global.mainModule.getUI().getMainWindow().getCallbackWindow().getBugReportCommentText());
|
|
}
|
|
}
|