Home | History | Annotate | Download | only in monkey
      1 /*
      2  * Copyright (C) 2012 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0
      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 package com.motorola.studio.android.wizards.monkey;
     17 
     18 /**
     19  * This interface holds the constants for MonkeyConfiguration
     20  */
     21 
     22 public interface IMonkeyConfigurationConstants
     23 {
     24 
     25     public final static String LAUNCH_CONFIGURATION_TYPE_EXTENSION_ID =
     26             "monkeyLaunchConfigurationType";
     27 
     28     public final static String MOTODEV_APP_ICO = "icons/monkey/motodevapp.gif";
     29 
     30     public final static String DEFAULT_VALUE = "";
     31 
     32     public final static String DEFAULT_COUNT_VALUE = "50";
     33 
     34     public final static String DEFAULT_VERBOSE_VALUE = "-v";
     35 
     36     public final static boolean DEFAULT_BOOL_VALUE = false;
     37 
     38     public final static String ATTR_DEVICE_INSTANCE_NAME =
     39             "com.motorola.studio.android.monkey.instanceName";
     40 
     41     public final static String ANDROID_CONSOLE_ID = "Android";
     42 
     43     public static final String ATTR_EVENT_COUNT_NAME = "";
     44 
     45     public static final String ATTR_OTHER_CMDS = "com.motorola.studio.android.monkey.otherCmds";
     46 
     47     public static final String ATTR_SELECTED_PACKAGES =
     48             "com.motorola.studio.android.monkey.selectedPackages";
     49 
     50     public static final String NEW_CONFIGURATION_NAME = "New_configuration";
     51 
     52 }
     53