{
String actionCommand = e.getActionCommand();
if ( actionCommand.equals( VIEW_BUTTON_TEXT ) )
{
ViewAttributesAndMethodsFrame frame = new ViewAttributesAndMethodsFrame(getDetailsSupplier().getSelectedMBeanName());
JMXBrowserPlugin.getDesktopPane().add(frame);
JMXBrowserPlugin.getDesktopPane().moveToFront(frame);
}
}