1 11 package org.eclipse.ui; 12 13 import org.eclipse.jface.resource.ImageDescriptor; 14 15 30 public interface IFileEditorMapping { 31 37 public IEditorDescriptor getDefaultEditor(); 38 39 44 public IEditorDescriptor[] getEditors(); 45 46 52 public IEditorDescriptor[] getDeletedEditors(); 53 54 59 public String getExtension(); 60 61 70 public ImageDescriptor getImageDescriptor(); 71 72 78 public String getLabel(); 79 80 85 public String getName(); 86 } 87 | Popular Tags |