1 11 package org.eclipse.ui.internal.registry; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.core.runtime.IConfigurationElement; 15 import org.eclipse.ui.*; 16 import org.eclipse.jface.resource.ImageDescriptor; 17 18 32 public interface IViewDescriptor extends IWorkbenchPartDescriptor { 33 36 public IViewPart createView() throws CoreException; 37 44 public String [] getCategoryPath(); 45 48 public IConfigurationElement getConfigurationElement(); 49 55 public String getDescription(); 56 59 public String getID() ; 60 63 public ImageDescriptor getImageDescriptor(); 64 67 public String getLabel() ; 68 69 72 public String getAccelerator(); 73 74 79 public float getFastViewWidthRatio(); 80 81 86 public boolean getAllowMultiple(); 87 88 } 89 | Popular Tags |