All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.simpligility.maven.plugins.android.configuration.Emma Maven / Gradle / Ivy

The newest version!
package com.simpligility.maven.plugins.android.configuration;


/**
 * Configuration for the emma test execution. This class is only the definition of the parameters that are
 * shadowed in
 * {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo} and used there.
 *
 * @author Mariusz Saramak [email protected]
 */
public class Emma
{

    /**
     * Mirror of {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo#emmaEnable}
     */
    private Boolean enable;

    /**
     * Mirror of {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo#emmaClassFolders}
     */
    private String classFolders;

    /**
     * Mirror of {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo#emmaOutputMetaFile}
     */
    private String outputMetaFile;

    /**
     * Mirror of {@link com.simpligility.maven.plugins.android.phase04processclasses.EmmaMojo#emmaFilters}
     */
    private String filters;

    public String getFilters()
    {
        return filters;
    }

    public Boolean isEnable()
    {
        return enable;
    }

    public String getClassFolders()
    {
        return classFolders;
    }

    public String getOutputMetaFile()
    {
        return outputMetaFile;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy