com.hello2morrow.sonarplugin.xsd.ReportContext Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.03.12 at 09:16:26 AM MEZ
//
package com.hello2morrow.sonarplugin.xsd;
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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* 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="general" type="{}xsdAttributeRoot"/>
* <element name="attributes" type="{}xsdAttributeRoot"/>
* <element name="projects" type="{}xsdProjects"/>
* <element name="buildUnits" type="{}xsdBuildUnits"/>
* <element name="configurations" type="{}xsdConfigurations"/>
* <element name="workspaces" type="{}xsdWorkspaces" minOccurs="0"/>
* <element name="violations" type="{}xsdViolations"/>
* <element name="consistencyProblems" type="{}xsdConsistencyProblems"/>
* <element name="cycleGroups" type="{}xsdCycleGroups" minOccurs="0"/>
* <element name="warnings" type="{}xsdWarnings"/>
* <element name="tasks" type="{}xsdTasks"/>
* <element name="exclusions" type="{}xsdExclusions" maxOccurs="2" minOccurs="2"/>
* <element name="metrics" type="{}xsdMetrics" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="productFamily" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"general",
"attributes",
"projects",
"buildUnits",
"configurations",
"workspaces",
"violations",
"consistencyProblems",
"cycleGroups",
"warnings",
"tasks",
"exclusions",
"metrics"
})
@XmlRootElement(name = "reportContext")
public class ReportContext {
@XmlElement(required = true)
protected XsdAttributeRoot general;
@XmlElement(required = true)
protected XsdAttributeRoot attributes;
@XmlElement(required = true)
protected XsdProjects projects;
@XmlElement(required = true)
protected XsdBuildUnits buildUnits;
@XmlElement(required = true)
protected XsdConfigurations configurations;
protected XsdWorkspaces workspaces;
@XmlElement(required = true)
protected XsdViolations violations;
@XmlElement(required = true)
protected XsdConsistencyProblems consistencyProblems;
protected XsdCycleGroups cycleGroups;
@XmlElement(required = true)
protected XsdWarnings warnings;
@XmlElement(required = true)
protected XsdTasks tasks;
@XmlElement(required = true)
protected List exclusions;
protected List metrics;
@XmlAttribute(required = true)
protected String productFamily;
@XmlAttribute(required = true)
protected String name;
/**
* Gets the value of the general property.
*
* @return
* possible object is
* {@link XsdAttributeRoot }
*
*/
public XsdAttributeRoot getGeneral() {
return general;
}
/**
* Sets the value of the general property.
*
* @param value
* allowed object is
* {@link XsdAttributeRoot }
*
*/
public void setGeneral(XsdAttributeRoot value) {
this.general = value;
}
/**
* Gets the value of the attributes property.
*
* @return
* possible object is
* {@link XsdAttributeRoot }
*
*/
public XsdAttributeRoot getAttributes() {
return attributes;
}
/**
* Sets the value of the attributes property.
*
* @param value
* allowed object is
* {@link XsdAttributeRoot }
*
*/
public void setAttributes(XsdAttributeRoot value) {
this.attributes = value;
}
/**
* Gets the value of the projects property.
*
* @return
* possible object is
* {@link XsdProjects }
*
*/
public XsdProjects getProjects() {
return projects;
}
/**
* Sets the value of the projects property.
*
* @param value
* allowed object is
* {@link XsdProjects }
*
*/
public void setProjects(XsdProjects value) {
this.projects = value;
}
/**
* Gets the value of the buildUnits property.
*
* @return
* possible object is
* {@link XsdBuildUnits }
*
*/
public XsdBuildUnits getBuildUnits() {
return buildUnits;
}
/**
* Sets the value of the buildUnits property.
*
* @param value
* allowed object is
* {@link XsdBuildUnits }
*
*/
public void setBuildUnits(XsdBuildUnits value) {
this.buildUnits = value;
}
/**
* Gets the value of the configurations property.
*
* @return
* possible object is
* {@link XsdConfigurations }
*
*/
public XsdConfigurations getConfigurations() {
return configurations;
}
/**
* Sets the value of the configurations property.
*
* @param value
* allowed object is
* {@link XsdConfigurations }
*
*/
public void setConfigurations(XsdConfigurations value) {
this.configurations = value;
}
/**
* Gets the value of the workspaces property.
*
* @return
* possible object is
* {@link XsdWorkspaces }
*
*/
public XsdWorkspaces getWorkspaces() {
return workspaces;
}
/**
* Sets the value of the workspaces property.
*
* @param value
* allowed object is
* {@link XsdWorkspaces }
*
*/
public void setWorkspaces(XsdWorkspaces value) {
this.workspaces = value;
}
/**
* Gets the value of the violations property.
*
* @return
* possible object is
* {@link XsdViolations }
*
*/
public XsdViolations getViolations() {
return violations;
}
/**
* Sets the value of the violations property.
*
* @param value
* allowed object is
* {@link XsdViolations }
*
*/
public void setViolations(XsdViolations value) {
this.violations = value;
}
/**
* Gets the value of the consistencyProblems property.
*
* @return
* possible object is
* {@link XsdConsistencyProblems }
*
*/
public XsdConsistencyProblems getConsistencyProblems() {
return consistencyProblems;
}
/**
* Sets the value of the consistencyProblems property.
*
* @param value
* allowed object is
* {@link XsdConsistencyProblems }
*
*/
public void setConsistencyProblems(XsdConsistencyProblems value) {
this.consistencyProblems = value;
}
/**
* Gets the value of the cycleGroups property.
*
* @return
* possible object is
* {@link XsdCycleGroups }
*
*/
public XsdCycleGroups getCycleGroups() {
return cycleGroups;
}
/**
* Sets the value of the cycleGroups property.
*
* @param value
* allowed object is
* {@link XsdCycleGroups }
*
*/
public void setCycleGroups(XsdCycleGroups value) {
this.cycleGroups = value;
}
/**
* Gets the value of the warnings property.
*
* @return
* possible object is
* {@link XsdWarnings }
*
*/
public XsdWarnings getWarnings() {
return warnings;
}
/**
* Sets the value of the warnings property.
*
* @param value
* allowed object is
* {@link XsdWarnings }
*
*/
public void setWarnings(XsdWarnings value) {
this.warnings = value;
}
/**
* Gets the value of the tasks property.
*
* @return
* possible object is
* {@link XsdTasks }
*
*/
public XsdTasks getTasks() {
return tasks;
}
/**
* Sets the value of the tasks property.
*
* @param value
* allowed object is
* {@link XsdTasks }
*
*/
public void setTasks(XsdTasks value) {
this.tasks = value;
}
/**
* Gets the value of the exclusions 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 exclusions property.
*
*
* For example, to add a new item, do as follows:
*
* getExclusions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XsdExclusions }
*
*
*/
public List getExclusions() {
if (exclusions == null) {
exclusions = new ArrayList();
}
return this.exclusions;
}
/**
* Gets the value of the metrics 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 metrics property.
*
*
* For example, to add a new item, do as follows:
*
* getMetrics().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link XsdMetrics }
*
*
*/
public List getMetrics() {
if (metrics == null) {
metrics = new ArrayList();
}
return this.metrics;
}
/**
* Gets the value of the productFamily property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProductFamily() {
return productFamily;
}
/**
* Sets the value of the productFamily property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProductFamily(String value) {
this.productFamily = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
}