new SelectSchemaComboBoxAction(this),
ActionUtil.SEPARATOR,
new ShowObjectTypeToggleAction(this, DBObjectType.PROCEDURE),
new ShowObjectTypeToggleAction(this, DBObjectType.FUNCTION));
actionsPanel.add(actionToolbar.getComponent(), BorderLayout.CENTER);
methodsTree.setCellRenderer(new ObjectTreeCellRenderer());
methodsTree.setModel(model);
TreePath selectionPath = model.getInitialSelection();
if (selectionPath != null) {
methodsTree.setSelectionPath(selectionPath);
}