Author: max.andersen(a)jboss.com
Date: 2010-11-11 14:47:41 -0500 (Thu, 11 Nov 2010)
New Revision: 26466
Modified:
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/messages/UIMessages.java
Log:
fix compilation error - needs to be fixed properly by Slava. JBIDE-7563
Modified:
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/messages/UIMessages.java
===================================================================
---
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/messages/UIMessages.java 2010-11-11
19:30:06 UTC (rev 26465)
+++
trunk/common/plugins/org.jboss.tools.common.model.ui/src/org/jboss/tools/common/model/ui/messages/UIMessages.java 2010-11-11
19:47:41 UTC (rev 26466)
@@ -16,6 +16,7 @@
public class UIMessages extends NLS {
private static final String BUNDLE_NAME =
"org.jboss.tools.common.model.ui.messages.messages";//$NON-NLS-1$
+
static {
// load message values from bundle file
NLS.initializeMessages(BUNDLE_NAME, UIMessages.class);
@@ -31,4 +32,7 @@
public static String REPORT_PROBLEM_NO_DESCRIPTION;
public static String REPORT_PROBLEM_RESULT;
public static String REPORT_PROBLEM_COPY_BUTTON;
+ public static String PROPERTIES_EDITOR_FILTER_REGULAR = PROPERTIES_EDITOR_EXPRESSION;
+ public static String PROPERTIES_EDITOR_FILTER_SIMPLE = PROPERTIES_EDITOR_FILTER;
+
}