/* * Copyright (c) 2012, the Dart project authors. * * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.eclipse.org/legal/epl-v10.html * * Unless required by applicable law or agreed to in writing, software distributed under the License * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express * or implied. See the License for the specific language governing permissions and limitations under * the License. */ package com.google.dart.tools.ui.internal.refactoring.reorg; import org.eclipse.osgi.util.NLS; /** * @coverage dart.editor.ui.refactoring.ui */ public final class ReorgMessages extends NLS { private static final String BUNDLE_NAME = ReorgMessages.class.getName(); public static String CutAction_text; public static String PasteAction_projectName; public static String JdtMoveAction_update_references_singular; public static String JdtMoveAction_update_references_plural; /** * DO NOT REMOVE, used in a product. * * @deprecated As of 3.6 */ @Deprecated public static String JdtMoveAction_update_references; public static String ReorgQueries_enterNewNameQuestion; public static String ReorgQueries_nameConflictMessage; public static String ReorgQueries_resourceWithThisNameAlreadyExists; public static String ReorgQueries_invalidNameMessage; public static String ReorgQueries_packagewithThatNameexistsMassage; public static String ReorgQueries_resourceExistsWithDifferentCaseMassage; public static String ReorgQueries_skip_all; /** * DO NOT REMOVE, used in a product, see https://bugs.eclipse.org/297392. * * @deprecated As of 3.6 */ @Deprecated public static String ReorgGroup_paste; /** * DO NOT REMOVE, used in a product, see https://bugs.eclipse.org/297392 . * * @deprecated As of 3.6 */ @Deprecated public static String ReorgGroup_delete; /** * DO NOT REMOVE, used in a product, see https://bugs.eclipse.org/297392 . * * @deprecated As of 3.6 */ @Deprecated public static String CutSourceReferencesToClipboardAction_cut; public static String CopyToClipboardAction_text; public static String CopyToClipboardAction_description; public static String CopyToClipboardAction_2; public static String CopyToClipboardAction_3; public static String CopyToClipboardAction_4; public static String CopyToClipboardAction_5; public static String DeleteAction_3; public static String DeleteAction_4; public static String DeleteWorkingSet_Hide; public static String DeleteWorkingSet_removeorhideworkingset_single; public static String DeleteWorkingSet_removeorhideworkingset_multiple; public static String DeleteWorkingSet_Remove; public static String DeleteWorkingSet_single; public static String DeleteWorkingSet_multiple; public static String ReorgCopyAction_3; public static String ReorgCopyAction_4; public static String ReorgCopyWizard_1; public static String ReorgMoveAction_3; public static String ReorgMoveAction_4; public static String ReorgMoveWizard_3; public static String ReorgMoveWizard_textual_move; public static String ReorgMoveWizard_newPackage; public static String ReorgUserInputPage_choose_destination_single; public static String ReorgUserInputPage_choose_destination_multi; public static String RenameMethodUserInterfaceStarter_name; public static String RenameMethodUserInterfaceStarter_message; public static String PasteAction_4; public static String PasteAction_5; public static String PasteAction_change_name; public static String PasteAction_edit_name; public static String PasteAction_element_doesnot_exist; public static String PasteAction_invalid_destination; public static String PasteAction_name; public static String PasteAction_wrong_destination; public static String PasteAction_TextPaster_exists; public static String PasteAction_TextPaster_confirmOverwriting; public static String PasteAction_cannot_selection; public static String PasteAction_cannot_no_selection; public static String PasteAction_snippet_default_package_name; public static String PasteAction_snippet_default_type_name; static { NLS.initializeMessages(BUNDLE_NAME, ReorgMessages.class); } private ReorgMessages() { // Do not instantiate } }