Package net.jmesnil.jmx.ui.internal.editors

Examples of net.jmesnil.jmx.ui.internal.editors.MBeanEditor


  }

  public IStructuredSelection findSelection(IEditorInput anInput) {
    IEditorPart part = EditorUtils.isOpenInEditor(anInput);
    if( part instanceof MBeanEditor ) {
      MBeanEditor editor = (MBeanEditor)part;
      Object page = editor.getSelectedPage();
      IStructuredSelection sel = null;
      if( page instanceof AttributesPage) {
        sel = ((AttributesPage)page).getSelection();
      } else if( page instanceof OperationsPage) {
        sel = ((OperationsPage)page).getSelection();
View Full Code Here

TOP

Related Classes of net.jmesnil.jmx.ui.internal.editors.MBeanEditor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.