Package org.eclipse.core.filesystem.provider

Examples of org.eclipse.core.filesystem.provider.FileSystem.initialize()


    if (result instanceof IFileSystem)
      return (IFileSystem) result;
    try {
      IConfigurationElement element = (IConfigurationElement) result;
      FileSystem fs = (FileSystem) element.createExecutableExtension("run"); //$NON-NLS-1$
      fs.initialize(scheme);
      //store the file system instance so we don't have to keep recreating it
      registry.put(scheme, fs);
      return fs;
    } catch (CoreException e) {
      //remove this invalid file system from the registry
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.