use of com.google.security.zynamics.binnavi.Gui.MainWindow.ProjectTree.Actions.CDeleteDebuggerDescriptionAction in project binnavi by google.
the class CDebuggerNodeMenuBuilder method createMenu.
@Override
protected void createMenu(final JComponent menu) {
menu.add(new JMenuItem(CActionProxy.proxy(new CDeleteDebuggerDescriptionAction(getParent(), m_database, m_debuggers, getParentUpdater()))));
if (m_table != null) {
menu.add(new JSeparator());
menu.add(new JMenuItem(CActionProxy.proxy(new CopySelectionAction(m_table))));
}
}
Aggregations