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

de.is24.deadcode4j.plugin.CustomXml Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package de.is24.deadcode4j.plugin;

import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;

import java.util.List;

import static com.google.common.collect.Lists.newArrayList;

/**
 * CustomXml is used to configure a {@link de.is24.deadcode4j.analyzer.CustomXmlAnalyzer}.
 *
 * @since 1.3
 */
public class CustomXml {

    @java.lang.SuppressWarnings("UnusedDeclaration")
    @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "Set by Plexus when configuring the plugin")
    private String endOfFileName;
    @java.lang.SuppressWarnings("UnusedDeclaration")
    @SuppressFBWarnings(value = "UWF_UNWRITTEN_FIELD", justification = "Set by Plexus when configuring the plugin")
    private String rootElement;
    private List xPaths = newArrayList();

    public String getEndOfFileName() {
        return endOfFileName;
    }

    public String getRootElement() {
        return rootElement;
    }

    public List getXPaths() {
        return xPaths;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy