Basic Reafctoring functionality adapted from Leif Frenzels sources in eclipse-magazin...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ltk / core / CoreTexts.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/core/CoreTexts.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/ltk/core/CoreTexts.java
new file mode 100644 (file)
index 0000000..3c8c23f
--- /dev/null
@@ -0,0 +1,36 @@
+// Copyright (c) 2005 by Leif Frenzel. All rights reserved.
+// See http://leiffrenzel.de
+package net.sourceforge.phpdt.ltk.core;
+
+import org.eclipse.osgi.util.NLS;
+
+/**
+ * <p>
+ * provides internationalized messages Strings from the coretexts resource
+ * bundle.
+ * </p>
+ *
+ * @author Leif Frenzel
+ */
+public class CoreTexts extends NLS {
+
+       private static final String BUNDLE_NAME = "net.sourceforge.phpdt.ltk.core.coretexts"; //$NON-NLS-1$
+
+       static {
+               NLS.initializeMessages(BUNDLE_NAME, CoreTexts.class);
+       }
+
+       // message fields
+       public static String renamePropertyProcessor_name;
+
+       public static String renamePropertyDelegate_noSourceFile;
+
+       public static String renamePropertyDelegate_roFile;
+
+       public static String renamePropertyDelegate_noPHPKey;
+
+       public static String renamePropertyDelegate_collectingChanges;
+
+       public static String renamePropertyDelegate_checking;
+       // public static String renamePropertyDelegate_propNotFound;
+}
\ No newline at end of file