View Javadoc
1   package com.simpligility.maven.plugins.android.configuration;
2   
3   
4   /**
5    * Configuration for the emma test execution. This class is only the definition of the parameters that are
6    * shadowed in
7    * {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo} and used there.
8    *
9    * @author Mariusz Saramak mariusz@saramak.eu
10   */
11  public class Emma
12  {
13  
14      /**
15       * Mirror of {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo#emmaEnable}
16       */
17      private Boolean enable;
18  
19      /**
20       * Mirror of {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo#emmaClassFolders}
21       */
22      private String classFolders;
23  
24      /**
25       * Mirror of {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo#emmaOutputMetaFile}
26       */
27      private String outputMetaFile;
28  
29      /**
30       * Mirror of {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo#emmaFilters}
31       */
32      private String filters;
33  
34      public String getFilters()
35      {
36          return filters;
37      }
38  
39      public Boolean isEnable()
40      {
41          return enable;
42      }
43  
44      public String getClassFolders()
45      {
46          return classFolders;
47      }
48  
49      public String getOutputMetaFile()
50      {
51          return outputMetaFile;
52      }
53  }