1 /* 2 * Copyright (C) 2011 The Android Open Source Project 3 * 4 * Licensed under the Eclipse Public License, Version 1.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.eclipse.org/org/documents/epl-v10.php 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.ide.eclipse.adt.ndk.internal; 18 19 import org.eclipse.osgi.util.NLS; 20 21 public class Messages extends NLS { 22 private static final String BUNDLE_NAME = "com.android.ide.eclipse.adt.ndk.internal.messages"; //$NON-NLS-1$ 23 24 public static String AddNativeWizardPage_Description; 25 26 public static String AddNativeWizardPage_LibraryName; 27 28 public static String AddNativeWizardPage_Location_not_valid; 29 30 public static String AddNativeWizardPage_Title; 31 32 public static String NDKPreferencePage_Location; 33 34 public static String NDKPreferencePage_not_a_valid_directory; 35 36 public static String NDKPreferencePage_not_a_valid_NDK_directory; 37 38 public static String NDKPreferencePage_Preferences; 39 40 public static String SetFolders_Missing_project_name; 41 42 public static String SetFolders_No_folders; 43 44 public static String SetFolders_Project_does_not_exist; 45 46 public static String SimpleFile_Bad_file_operation; 47 48 public static String SimpleFile_Bundle_not_found; 49 50 public static String SimpleFile_Could_not_fine_source; 51 52 public static String SimpleFile_No_project_name; 53 54 public static String SimpleFile_Project_does_not_exist; 55 56 static { 57 // initialize resource bundle 58 NLS.initializeMessages(BUNDLE_NAME, Messages.class); 59 } 60 61 private Messages() { 62 } 63 } 64