Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 11 package org.eclipse.core.internal.filesystem; 12 13 import org.eclipse.osgi.util.NLS; 14 15 18 public class Messages extends NLS { 19 private static final String BUNDLE_NAME = "org.eclipse.core.internal.filesystem.messages"; 21 public static String copying; 22 public static String couldnotDelete; 23 public static String couldnotDeleteReadOnly; 24 public static String couldNotLoadLibrary; 25 public static String couldNotMove; 26 public static String couldNotRead; 27 public static String couldNotWrite; 28 public static String deleteProblem; 29 public static String deleting; 30 public static String failedCreateWrongType; 31 public static String failedMove; 32 public static String failedReadDuringWrite; 33 public static String fileExists; 34 public static String fileNotFound; 35 public static String moving; 36 public static String noFileSystem; 37 public static String noImplDelete; 38 public static String noImplWrite; 39 public static String noScheme; 40 public static String notAFile; 41 public static String readOnlyParent; 42 43 static { 44 NLS.initializeMessages(BUNDLE_NAME, Messages.class); 46 } 47 48 } 49
| Popular Tags
|