KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ant > internal > ui > dtd > schema > AntDTDSchemaMessages


1 /**********************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others. All rights reserved. This
3  * program and the accompanying materials are made available under the terms of
4  * the Eclipse Public License v1.0 which accompanies this distribution, and is
5  * available at http://www.eclipse.org/legal/epl-v10.html
6  *
7  * Contributors:
8  * IBM - Initial API and implementation
9  **********************************************************************/

10 package org.eclipse.ant.internal.ui.dtd.schema;
11
12 import org.eclipse.osgi.util.NLS;
13
14 public class AntDTDSchemaMessages extends NLS {
15     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.ant.internal.ui.dtd.schema.AntDTDSchemaMessages";//$NON-NLS-1$
16

17     public static String JavaDoc Model_model_may_not_be_changed;
18     public static String JavaDoc Model____UNKNOWN____2;
19     public static String JavaDoc NfmParser_Ambiguous;
20     public static String JavaDoc SchemaFactory_Doubly_defined;
21     public static String JavaDoc SchemaFactory_Start_with_left_parenthesis;
22     public static String JavaDoc SchemaFactory_Expecting_operator_or_right_parenthesis;
23     public static String JavaDoc SchemaFactory_Unexpected_end;
24
25     static {
26         // load message values from bundle file
27
NLS.initializeMessages(BUNDLE_NAME, AntDTDSchemaMessages.class);
28     }
29 }
Popular Tags