1 package com.simpligility.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.simpligility.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.simpligility.maven.plugins.android.AbstractEmulatorMojo#emulatorAvd}
13 */
14 private String avd;
15
16 /**
17 * Mirror of {@link com.simpligility.maven.plugins.android.AbstractEmulatorMojo#emulatorWait}
18 */
19 private String wait;
20
21 /**
22 * Mirror of {@link com.simpligility.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 getLocation()
32 {
33 return location;
34 }
35
36 private String location;
37
38 public String getAvd()
39 {
40 return avd;
41 }
42
43 public String getWait()
44 {
45 return wait;
46 }
47
48 public String getOptions()
49 {
50 return options;
51 }
52
53 public String getExecutable()
54 {
55 return executable;
56 }
57 }