Examples of IEditorDescriptor


Examples of org.eclipse.ui.IEditorDescriptor

    }

    // Phase 1: check editors that have their own matching strategy
    for (Iterator i = editorList.iterator(); i.hasNext();) {
      EditorReference editor = (EditorReference) i.next();
      IEditorDescriptor desc = editor.getDescriptor();
      if (desc != null) {
        IEditorMatchingStrategy matchingStrategy = desc
            .getEditorMatchingStrategy();
        if (matchingStrategy != null) {
          i.remove(); // We're handling this one here, so remove it
          // from the list.
          if (matchingStrategy.matches(editor, input)) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.