1 11 package org.eclipse.jdt.internal.corext.fix; 12 13 import org.eclipse.osgi.util.NLS; 14 15 public final class FixMessages extends NLS { 16 private static final String BUNDLE_NAME= "org.eclipse.jdt.internal.corext.fix.FixMessages"; 18 private FixMessages() { 19 } 20 21 public static String CleanUpPostSaveListener_exception_error; 22 public static String CleanUpPostSaveListener_name; 23 public static String CleanUpPostSaveListener_SaveAction_ChangeName; 24 public static String CleanUpPostSaveListener_unknown_profile_error_message; 25 26 public static String CleanUpRefactoring_checkingPostConditions_message; 27 public static String CleanUpRefactoring_clean_up_multi_chang_name; 28 public static String CleanUpRefactoring_could_not_retrive_profile; 29 public static String CleanUpRefactoring_Parser_Startup_message; 30 public static String CleanUpRefactoring_Refactoring_name; 31 public static String CleanUpRefactoring_ProcessingCompilationUnit_message; 32 public static String CleanUpRefactoring_Initialize_message; 33 public static String CodeStyleFix_change_name; 34 public static String ControlStatementsFix_change_name; 35 36 public static String ConvertIterableLoopOperation_RemoveUpdateExpression_Warning; 37 public static String ConvertIterableLoopOperation_RemoveUpdateExpressions_Warning; 38 public static String ConvertIterableLoopOperation_semanticChangeWarning; 39 public static String ExpressionsFix_add_parenthesis_change_name; 40 public static String ExpressionsFix_remove_parenthesis_change_name; 41 public static String ImportsFix_OrganizeImports_Description; 42 public static String Java50Fix_add_annotations_change_name; 43 public static String PotentialProgrammingProblemsFix_add_id_change_name; 44 45 public static String PotentialProgrammingProblemsFix_calculatingUIDFailed_binding; 46 public static String PotentialProgrammingProblemsFix_calculatingUIDFailed_exception; 47 public static String PotentialProgrammingProblemsFix_calculatingUIDFailed_unknown; 48 public static String SortMembersFix_Change_description; 49 public static String SortMembersFix_Fix_description; 50 public static String UnusedCodeFix_change_name; 51 public static String UnusedCodeFix_RemoveFieldOrLocal_AlteredAssignments_preview; 52 53 public static String UnusedCodeFix_RemoveFieldOrLocal_description; 54 public static String UnusedCodeFix_RemoveFieldOrLocal_RemovedAssignments_preview; 55 public static String UnusedCodeFix_RemoveFieldOrLocalWithInitializer_description; 56 public static String UnusedCodeFix_RemoveMethod_description; 57 public static String UnusedCodeFix_RemoveConstructor_description; 58 public static String UnusedCodeFix_RemoveType_description; 59 public static String UnusedCodeFix_RemoveImport_description; 60 public static String UnusedCodeFix_RemoveCast_description; 61 public static String UnusedCodeFix_RemoveUnusedType_description; 62 public static String UnusedCodeFix_RemoveUnusedConstructor_description; 63 public static String UnusedCodeFix_RemoveUnusedPrivateMethod_description; 64 public static String UnusedCodeFix_RemoveUnusedField_description; 65 public static String UnusedCodeFix_RemoveUnusedVariabl_description; 66 67 public static String Java50Fix_AddMissingAnnotation_description; 68 public static String Java50Fix_AddDeprecated_description; 69 public static String Java50Fix_AddOverride_description; 70 public static String Java50Fix_ConvertToEnhancedForLoop_description; 71 public static String Java50Fix_ParametrizeTypeReference_description; 72 public static String Java50Fix_AddTypeParameters_description; 73 public static String Java50Fix_SerialVersion_default_description; 74 public static String Java50Fix_SerialVersion_hash_description; 75 public static String Java50Fix_InitializeSerialVersionId_subtask_description; 76 public static String Java50Fix_SerialVersion_CalculateHierarchy_description; 77 78 public static String StringFix_AddRemoveNonNls_description; 79 public static String StringFix_AddNonNls_description; 80 public static String StringFix_RemoveNonNls_description; 81 82 public static String CodeStyleFix_ChangeAccessToStatic_description; 83 public static String CodeStyleFix_AddThisQualifier_description; 84 public static String CodeStyleFix_QualifyWithThis_description; 85 public static String CodeStyleFix_ChangeAccessToStaticUsingInstanceType_description; 86 public static String CodeStyleFix_ChangeStaticAccess_description; 87 public static String CodeStyleFix_ChangeIfToBlock_desription; 88 public static String CodeStyleFix_ChangeElseToBlock_description; 89 public static String CodeStyleFix_ChangeControlToBlock_description; 90 public static String CodeStyleFix_removeThis_groupDescription; 91 public static String CodeStyleFix_ChangeAccessUsingDeclaring_description; 92 public static String CodeStyleFix_QualifyMethodWithThis_description; 93 public static String CodeStyleFix_QualifyFieldWithThis_description; 94 public static String CodeStyleFix_QualifyMethodWithDeclClass_description; 95 public static String CodeStyleFix_QualifyFieldWithDeclClass_description; 96 97 public static String SerialVersion_group_description; 98 99 public static String ControlStatementsFix_removeIfBlock_proposalDescription; 100 public static String ControlStatementsFix_removeElseBlock_proposalDescription; 101 public static String ControlStatementsFix_removeIfElseBlock_proposalDescription; 102 public static String ControlStatementsFix_removeBrackets_proposalDescription; 103 104 public static String ExpressionsFix_addParanoiacParenthesis_description; 105 public static String ExpressionsFix_removeUnnecessaryParenthesis_description; 106 public static String VariableDeclarationFix_add_final_change_name; 107 108 public static String VariableDeclarationFix_changeModifierOfUnknownToFinal_description; 109 public static String VariableDeclarationFix_ChangeMidifiersToFinalWherPossible_description; 110 111 static { 112 NLS.initializeMessages(BUNDLE_NAME, FixMessages.class); 114 } 115 } 116 | Popular Tags |