[jbosstools-commits] JBoss Tools SVN: r43233 - trunk/common/plugins/org.jboss.tools.common.core/src/org/jboss/tools/common/core.

jbosstools-commits at lists.jboss.org jbosstools-commits at lists.jboss.org
Sat Aug 25 02:14:57 EDT 2012


Author: rob.stryker at jboss.com
Date: 2012-08-25 02:14:56 -0400 (Sat, 25 Aug 2012)
New Revision: 43233

Added:
   trunk/common/plugins/org.jboss.tools.common.core/src/org/jboss/tools/common/core/Messages.java
   trunk/common/plugins/org.jboss.tools.common.core/src/org/jboss/tools/common/core/messages.properties
Log:
JBIDE-12469 split of o.j.t.common and creation of o.j.t.common.core (missed messages files)

Added: trunk/common/plugins/org.jboss.tools.common.core/src/org/jboss/tools/common/core/Messages.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.core/src/org/jboss/tools/common/core/Messages.java	                        (rev 0)
+++ trunk/common/plugins/org.jboss.tools.common.core/src/org/jboss/tools/common/core/Messages.java	2012-08-25 06:14:56 UTC (rev 43233)
@@ -0,0 +1,30 @@
+/******************************************************************************* 
+ * Copyright (c) 2009 - 2012 Red Hat, Inc. 
+ * Distributed under license by Red Hat, Inc. All rights reserved. 
+ * This program is made available under the terms of the 
+ * Eclipse Public License v1.0 which accompanies this distribution, 
+ * and is available at http://www.eclipse.org/legal/epl-v10.html 
+ * 
+ * Contributors: 
+ * Red Hat, Inc. - initial API and implementation 
+ ******************************************************************************/
+
+package org.jboss.tools.common.core;
+
+import org.eclipse.osgi.util.NLS;
+
+public class Messages extends NLS {
+	private static final String BUNDLE_NAME = "org.jboss.tools.common.core.messages"; //$NON-NLS-1$
+	public static String SAXValidator_IOExceptionMessage;
+	public static String SAXValidator_SAXExceptionMessage;
+	public static String SAXValidator_UnableToInstantiateMessage;
+	public static String XMLUtilities_IOExceptionMessage;
+	public static String XMLUtilities_SAXExceptionMessage;
+	static {
+		// initialize resource bundle
+		NLS.initializeMessages(BUNDLE_NAME, Messages.class);
+	}
+
+	private Messages() {
+	}
+}

Added: trunk/common/plugins/org.jboss.tools.common.core/src/org/jboss/tools/common/core/messages.properties
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.core/src/org/jboss/tools/common/core/messages.properties	                        (rev 0)
+++ trunk/common/plugins/org.jboss.tools.common.core/src/org/jboss/tools/common/core/messages.properties	2012-08-25 06:14:56 UTC (rev 43233)
@@ -0,0 +1,5 @@
+SAXValidator_IOExceptionMessage=Unidentified parser error
+SAXValidator_SAXExceptionMessage=Unidentified parser error
+SAXValidator_UnableToInstantiateMessage=error: Unable to instantiate parser ({0})
+XMLUtilities_IOExceptionMessage=Unexpected parser error
+XMLUtilities_SAXExceptionMessage=Unexpected parser error



More information about the jbosstools-commits mailing list