KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > debug > eval > ast > engine > EvaluationEngineMessages


1 /*******************************************************************************
2  * Copyright (c) 2000, 2006 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 - Initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.jdt.internal.debug.eval.ast.engine;
12
13 import org.eclipse.osgi.util.NLS;
14
15 public class EvaluationEngineMessages extends NLS {
16     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.jdt.internal.debug.eval.ast.engine.EvaluationEngineMessages";//$NON-NLS-1$
17

18     public static String JavaDoc ASTInstructionCompiler_Anonymous_type_declaration_cannot_be_used_in_an_evaluation_expression_2;
19     public static String JavaDoc ASTInstructionCompiler_Assert_statement_cannot_be_used_in_an_evaluation_expression_3;
20     public static String JavaDoc ASTInstructionCompiler_Unrecognized_assignment_operator____4;
21
22     public static String JavaDoc ASTInstructionCompiler_Catch_clause_cannot_be_used_in_an_evaluation_expression_6;
23     public static String JavaDoc ASTInstructionCompiler_Anonymous_type_declaration_cannot_be_used_in_an_evaluation_expression_7;
24     public static String JavaDoc ASTInstructionCompiler_Constructor_of_a_local_type_cannot_be_used_in_an_evaluation_expression_8;
25     public static String JavaDoc ASTInstructionCompiler_this_constructor_invocation_cannot_be_used_in_an_evaluation_expression_9;
26     public static String JavaDoc ASTInstructionCompiler_Error_in_type_declaration_statement;
27     public static String JavaDoc ASTInstructionCompiler_Unrecognized_infix_operator____13;
28
29     public static String JavaDoc ASTInstructionCompiler_unrecognized_postfix_operator____15;
30     public static String JavaDoc ASTInstructionCompiler_unrecognized_prefix_operator____16;
31     public static String JavaDoc ASTInstructionCompiler_binding_null_for__17;
32
33     public static String JavaDoc ASTInstructionCompiler_super_constructor_invocation_cannot_be_used_in_an_evaluation_expression_19;
34     public static String JavaDoc ASTInstructionCompiler_Try_statement_cannot_be_used_in_an_evaluation_expression_23;
35     public static String JavaDoc ASTInstructionCompiler_Type_declaration_cannot_be_used_in_an_evaluation_expression_24;
36     public static String JavaDoc ASTInstructionCompiler_Type_declaration_statement_cannot_be_used_in_an_evaluation_expression_25;
37     public static String JavaDoc ASTInstructionCompiler_Local_type_array_instance_creation_cannot_be_used_in_an_evaluation_expression_29;
38     public static String JavaDoc ASTInstructionCompiler_Constructor_which_contains_a_local_type_as_parameter_cannot_be_used_in_an_evaluation_expression_30;
39     public static String JavaDoc ASTInstructionCompiler_Qualified_local_type_field_access_cannot_be_used_in_an_evaluation_expression_31;
40     public static String JavaDoc ASTInstructionCompiler_Method_which_contains_a_local_type_as_parameter_cannot_be_used_in_an_evaluation_expression_32;
41     public static String JavaDoc ASTInstructionCompiler_Must_explicitly_qualify_the_allocation_with_an_instance_of_the_enclosing_type_33;
42     public static String JavaDoc ASTEvaluationEngine_Evaluations_must_contain_either_an_expression_or_a_block_of_well_formed_statements_1;
43
44     public static String JavaDoc InterpreterVariable_setValue_String__not_supported_for_interpreter_variable_1;
45     public static String JavaDoc InterpreterVariable_verifyValue_IValue__not_supported_for_interpreter_variable_2;
46     public static String JavaDoc InterpreterVariable_verifyValue_String__not_supported_for_interpreter_variable_3;
47
48     public static String JavaDoc ASTEvaluationEngine_AST_evaluation_engine_cannot_evaluate_expression;
49     public static String JavaDoc ASTEvaluationEngine_An_unknown_error_occurred_during_evaluation;
50     public static String JavaDoc ASTEvaluationEngine_Cannot_perform_nested_evaluations;
51     public static String JavaDoc ASTInstructionCompiler_36;
52     public static String JavaDoc ASTInstructionCompiler_0;
53
54     static {
55         // load message values from bundle file
56
NLS.initializeMessages(BUNDLE_NAME, EvaluationEngineMessages.class);
57     }
58
59     public static String JavaDoc ASTEvaluationEngine_0;
60     public static String JavaDoc ASTEvaluationEngine_1;
61     public static String JavaDoc ArrayRuntimeContext_0;
62 }
63
Popular Tags