use of com.intellij.ui.popup.util.DetailViewImpl in project intellij-community by JetBrains.
the class BreakpointsDialog method createDetailView.
private JComponent createDetailView() {
DetailViewImpl detailView = new DetailViewImpl(myProject);
detailView.setEmptyLabel(XDebuggerBundle.message("xbreakpoint.label.empty"));
myDetailController.setDetailView(detailView);
return detailView;
}
Aggregations