1 package com.jayway.maven.plugins.android.configuration;
2
3 /**
4 * Configuration for the Android Emulator. This class is only the definition of the parameters that are shadowed in
5 * {@link com.jayway.maven.plugins.android.AbstractAndroidMojo} and used there.
6 *
7 * @author Manfred Moser <manfred@simpligility.com>
8 */
9 public class Emulator
10 {
11 /**
12 * Mirror of {@link com.jayway.maven.plugins.android.AbstractEmulatorMojo#emulatorAvd}
13 */
14 private String avd;
15
16 /**
17 * Mirror of {@link com.jayway.maven.plugins.android.AbstractEmulatorMojo#emulatorWait}
18 */
19 private String wait;
20
21 /**
22 * Mirror of {@link com.jayway.maven.plugins.android.AbstractEmulatorMojo#emulatorOptions}
23 */
24 private String options;
25
26 /**
27 * Override default emulator executable
28 */
29 private String executable;
30
31 public String getAvd()
32 {
33 return avd;
34 }
35
36 public String getWait()
37 {
38 return wait;
39 }
40
41 public String getOptions()
42 {
43 return options;
44 }
45
46 public String getExecutable()
47 {
48 return executable;
49 }
50 }