1 11 package org.eclipse.core.filebuffers; 12 13 import org.eclipse.core.runtime.IPath; 14 15 16 21 public final class LocationKind { 22 23 33 public static final LocationKind LOCATION= new LocationKind("location"); 35 41 public static final LocationKind IFILE= new LocationKind("IFile"); 43 54 public static final LocationKind NORMALIZE= new LocationKind("normalize"); 56 57 private final String fName; 58 59 LocationKind(String name) { 60 fName= name; 61 } 62 63 66 public String toString() { 67 return fName; 68 } 69 } | Popular Tags |