1 11 package org.eclipse.ui.internal.part.components.services; 12 13 import java.io.File ; 14 import java.net.URL ; 15 16 import org.eclipse.jface.resource.ImageDescriptor; 17 18 25 public interface IPluginResources { 26 27 33 public ImageDescriptor getImage(String path); 34 35 42 public File getStateFile(String path); 43 44 51 public URL getPluginURL(String path); 52 } 53 | Popular Tags |