Home | History | Annotate | Download | only in launch
      1 /*
      2  * Copyright (C) 2010 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.internal.launch;
     18 
     19 import org.eclipse.osgi.util.NLS;
     20 
     21 public class LaunchMessages extends NLS {
     22     private static final String BUNDLE_NAME = "com.android.ide.eclipse.adt.internal.launch.messages"; //$NON-NLS-1$
     23 
     24     // generic messages that could be used by multiple classes
     25     public static String LaunchDialogTitle;
     26     public static String NonAndroidProjectError;
     27     public static String ParseFileFailure_s;
     28 
     29     // specialized, class-specific messages
     30     public static String AndroidJUnitLaunchAction_LaunchDesc_s;
     31     public static String AndroidJUnitLaunchAction_LaunchFail;
     32     public static String AndroidJUnitLaunchAction_LaunchInstr_2s;
     33     public static String AndroidJUnitDelegate_NoRunnerConfigMsg_s;
     34     public static String AndroidJUnitDelegate_NoRunnerConsoleMsg_4s;
     35     public static String AndroidJUnitDelegate_NoRunnerMsg_s;
     36     public static String AndroidJUnitDelegate_NoTargetMsg_3s;
     37     public static String AndroidJUnitTab_LoaderLabel;
     38     public static String AndroidJUnitTab_LoadInstrError_s;
     39     public static String AndroidJUnitTab_NoRunnerError;
     40     public static String AndroidJUnitTab_SizeLabel;
     41     public static String AndroidJUnitTab_TestContainerText;
     42     public static String InstrValidator_NoTestLibMsg_s;
     43     public static String InstrValidator_WrongRunnerTypeMsg_s;
     44     public static String RemoteAdtTestRunner_RunCompleteMsg;
     45     public static String RemoteAdtTestRunner_RunFailedMsg_s;
     46 
     47     public static String RemoteAdtTestRunner_RunIOException_s;
     48     public static String RemoteAdtTestRunner_RunTimeoutException;
     49     public static String RemoteAdtTestRunner_RunAdbCommandRejectedException_s;
     50     public static String RemoteAdtTestRunner_RunShellCommandUnresponsiveException;
     51     public static String RemoteAdtTestRunner_RunStoppedMsg;
     52 
     53     static {
     54         // initialize resource bundle
     55         NLS.initializeMessages(BUNDLE_NAME, LaunchMessages.class);
     56     }
     57 
     58     private LaunchMessages() {
     59     }
     60 }
     61