1 11 12 package org.eclipse.ui.ide.fileSystem; 13 14 import java.net.URI ; 15 16 import org.eclipse.core.filesystem.URIUtil; 17 import org.eclipse.swt.widgets.Shell; 18 19 28 public abstract class FileSystemContributor { 29 30 37 public abstract URI browseFileSystem(String initialPath, Shell shell); 38 39 45 public URI getURI(String string){ 46 return URIUtil.toURI(string); 47 } 48 49 } 50 | Popular Tags |