Home | History | Annotate | Download | only in launch
      1 /*
      2  * Copyright (C) 2012 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.ndk.internal.launch;
     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.ndk.internal.launch.messages"; //$NON-NLS-1$
     23     public static String NdkGdbLaunchDelegate_LaunchError_gdbserverOutput;
     24     public static String NdkGdbLaunchDelegate_Action_ActivityLaunch;
     25     public static String NdkGdbLaunchDelegate_Action_CheckAndroidDeviceVersion;
     26     public static String NdkGdbLaunchDelegate_Action_KillExistingGdbServer;
     27     public static String NdkGdbLaunchDelegate_Action_LaunchHostGdb;
     28     public static String NdkGdbLaunchDelegate_Action_LaunchingGdbServer;
     29     public static String NdkGdbLaunchDelegate_Action_ObtainAppAbis;
     30     public static String NdkGdbLaunchDelegate_Action_ObtainDevice;
     31     public static String NdkGdbLaunchDelegate_Action_ObtainDeviceABI;
     32     public static String NdkGdbLaunchDelegate_Action_PerformIncrementalBuild;
     33     public static String NdkGdbLaunchDelegate_Action_SettingUpPortForward;
     34     public static String NdkGdbLaunchDelegate_Action_SyncAppToDevice;
     35     public static String NdkGdbLaunchDelegate_Action_WaitGdbServerAttach;
     36     public static String NdkGdbLaunchDelegate_Action_WaitingForActivity;
     37     public static String NdkGdbLaunchDelegate_LaunchError_ActivityLaunchError;
     38     public static String NdkGdbLaunchDelegate_LaunchError_Api8Needed;
     39     public static String NdkGdbLaunchDelegate_LaunchError_CouldNotGetProject;
     40     public static String NdkGdbLaunchDelegate_LaunchError_gdbserverLaunchException;
     41     public static String NdkGdbLaunchDelegate_LaunchError_InstallError;
     42     public static String NdkGdbLaunchDelegate_LaunchError_InterruptedWaitingForGdbserver;
     43     public static String NdkGdbLaunchDelegate_LaunchError_NoActivityInManifest;
     44     public static String NdkGdbLaunchDelegate_LaunchError_NoCompatibleAbi;
     45     public static String NdkGdbLaunchDelegate_LaunchError_NoLauncherActivity;
     46     public static String NdkGdbLaunchDelegate_LaunchError_NoSuchActivity;
     47     public static String NdkGdbLaunchDelegate_LaunchError_NullApk;
     48     public static String NdkGdbLaunchDelegate_LaunchError_ObtainingAppFolder;
     49     public static String NdkGdbLaunchDelegate_LaunchError_PortForwarding;
     50     public static String NdkGdbLaunchDelegate_LaunchError_ProjectHasErrors;
     51     public static String NdkGdbLaunchDelegate_LaunchError_PullFileError;
     52     public static String NdkGdbLaunchDelegate_LaunchError_UnableToDetectAppAbi;
     53     public static String NdkGdbLaunchDelegate_LaunchError_UnknownAndroidDeviceVersion;
     54     public static String NdkGdbLaunchDelegate_LaunchError_VerifyIfDebugBuild;
     55     static {
     56         // initialize resource bundle
     57         NLS.initializeMessages(BUNDLE_NAME, Messages.class);
     58     }
     59 
     60     private Messages() {
     61     }
     62 }
     63