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

org.sonar.maven.model.maven2.Reporting Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.04.14 at 01:47:18 PM UTC 
//


package org.sonar.maven.model.maven2;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.sonar.maven.model.LocatedAttribute;
import org.sonar.maven.model.LocatedAttributeAdapter;
import org.sonar.maven.model.LocatedTreeImpl;


/**
 * Section for management of reports and their configuration.
 * 
 * 

Java class for Reporting complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Reporting">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="excludeDefaults" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="outputDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="plugins" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}ReportPlugin" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Reporting", propOrder = { }) public class Reporting extends LocatedTreeImpl { @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute excludeDefaults; @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute outputDirectory; protected Reporting.Plugins plugins; /** * Gets the value of the excludeDefaults property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getExcludeDefaults() { return excludeDefaults; } /** * Sets the value of the excludeDefaults property. * * @param value * allowed object is * {@link String } * */ public void setExcludeDefaults(LocatedAttribute value) { this.excludeDefaults = value; } /** * Gets the value of the outputDirectory property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getOutputDirectory() { return outputDirectory; } /** * Sets the value of the outputDirectory property. * * @param value * allowed object is * {@link String } * */ public void setOutputDirectory(LocatedAttribute value) { this.outputDirectory = value; } /** * Gets the value of the plugins property. * * @return * possible object is * {@link Reporting.Plugins } * */ public Reporting.Plugins getPlugins() { return plugins; } /** * Sets the value of the plugins property. * * @param value * allowed object is * {@link Reporting.Plugins } * */ public void setPlugins(Reporting.Plugins value) { this.plugins = value; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}ReportPlugin" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "plugins" }) public static class Plugins extends LocatedTreeImpl { @XmlElement(name = "plugin") protected List plugins; /** * Gets the value of the plugins property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the plugins property. * *

* For example, to add a new item, do as follows: *

         *    getPlugins().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ReportPlugin } * * */ public List getPlugins() { if (plugins == null) { plugins = new ArrayList(); } return this.plugins; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy