| java.lang.Object org.eclipse.ui.ide.fileSystem.FileSystemContributor
FileSystemContributor | abstract public class FileSystemContributor (Code) | | The abstract base class for all UI file system contributors. This class
provides the infrastructure for defining a contributor and fulfills the contract
specified by the org.eclipse.ui.ide.filesystemSupport
extension point.
since: 3.2 See Also: org.eclipse.core.filesystem.IFileSystem |
Method Summary | |
abstract public URI | browseFileSystem(String initialPath, Shell shell) Browse the file system for a URI to display to the user. | public URI | getURI(String string) Return a URI for the supplied String from the user. |
browseFileSystem | abstract public URI browseFileSystem(String initialPath, Shell shell)(Code) | | Browse the file system for a URI to display to the user.
Parameters: initialPath - The path to initialize the selection with. Parameters: shell - The shell to parent any required dialogs from URI if the file system is browsed successfully ornull if a URI could not be determined. |
getURI | public URI getURI(String string)(Code) | | Return a URI for the supplied String from the user.
Parameters: string - URI or null if the string is invalid. |
|
|