1 11 12 package org.eclipse.ui.internal.ide.filesystem; 13 14 import org.eclipse.ui.ide.fileSystem.FileSystemContributor; 15 16 23 public class FileSystemConfiguration { 24 25 String label; 26 27 FileSystemContributor contributor; 28 29 private String scheme; 30 31 32 39 public FileSystemConfiguration(String name, FileSystemContributor declaredContributor, String fileSystem) { 40 label = name; 41 contributor = declaredContributor; 42 scheme = fileSystem; 43 } 44 45 49 public String getLabel() { 50 return label; 51 } 52 53 57 public FileSystemContributor getContributor() { 58 return contributor; 59 } 60 61 65 public String getScheme() { 66 return scheme; 67 } 68 69 } 70 | Popular Tags |