KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > core > internal > expressions > ExpressionMessages


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

11 package org.eclipse.core.internal.expressions;
12
13 import org.eclipse.osgi.util.NLS;
14
15 public final class ExpressionMessages extends NLS {
16
17     private static final String JavaDoc BUNDLE_NAME= "org.eclipse.core.internal.expressions.ExpressionMessages";//$NON-NLS-1$
18

19     private ExpressionMessages() {
20         // Do not instantiate
21
}
22
23     public static String JavaDoc Expression_attribute_missing;
24     public static String JavaDoc Expression_attribute_invalid_value;
25     public static String JavaDoc Expression_variable_not_a_collection;
26     public static String JavaDoc Expression_variable_not_a_list;
27     
28     public static String JavaDoc Expression_variable_not_iterable;
29     public static String JavaDoc Expression_variable_not_countable;
30     
31     public static String JavaDoc Expression_unknown_element;
32     public static String JavaDoc Missing_Expression;
33     public static String JavaDoc Expression_string_not_correctly_escaped;
34     public static String JavaDoc Expression_string_not_terminated;
35     
36     public static String JavaDoc TypeExtender_unknownMethod;
37     public static String JavaDoc TypeExtender_incorrectType;
38     
39     public static String JavaDoc TestExpression_no_name_space;
40     
41     public static String JavaDoc WithExpression_variable_not_defined;
42     
43     public static String JavaDoc ResolveExpression_variable_not_defined;
44     
45     public static String JavaDoc PropertyTesterDescriptor_no_namespace;
46     public static String JavaDoc PropertyTesterDescritpri_no_properties;
47
48     public static String JavaDoc PropertyTester_error_activating_plugin;
49
50     public static String JavaDoc ElementHandler_unsupported_element;
51
52     static {
53         NLS.initializeMessages(BUNDLE_NAME, ExpressionMessages.class);
54     }
55 }
56
Popular Tags