Basic Reafctoring functionality adapted from Leif Frenzels sources in eclipse-magazin...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ltk / core / CoreTexts.java
1 // Copyright (c) 2005 by Leif Frenzel. All rights reserved.
2 // See http://leiffrenzel.de
3 package net.sourceforge.phpdt.ltk.core;
4
5 import org.eclipse.osgi.util.NLS;
6
7 /**
8  * <p>
9  * provides internationalized messages Strings from the coretexts resource
10  * bundle.
11  * </p>
12  *
13  * @author Leif Frenzel
14  */
15 public class CoreTexts extends NLS {
16
17         private static final String BUNDLE_NAME = "net.sourceforge.phpdt.ltk.core.coretexts"; //$NON-NLS-1$
18
19         static {
20                 NLS.initializeMessages(BUNDLE_NAME, CoreTexts.class);
21         }
22
23         // message fields
24         public static String renamePropertyProcessor_name;
25
26         public static String renamePropertyDelegate_noSourceFile;
27
28         public static String renamePropertyDelegate_roFile;
29
30         public static String renamePropertyDelegate_noPHPKey;
31
32         public static String renamePropertyDelegate_collectingChanges;
33
34         public static String renamePropertyDelegate_checking;
35         // public static String renamePropertyDelegate_propNotFound;
36 }