com.hello2morrow.sonarplugin.xsd.XsdConfiguration 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for xsdConfiguration complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="xsdConfiguration">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="project" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="parseSourceFiles" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="asymetricAnalysis" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="namespaceWarnings" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="sourcefileWarnings" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "xsdConfiguration")
public class XsdConfiguration {
@XmlAttribute(required = true)
protected String project;
@XmlAttribute(required = true)
protected String parseSourceFiles;
@XmlAttribute(required = true)
protected String asymetricAnalysis;
@XmlAttribute(required = true)
protected String namespaceWarnings;
@XmlAttribute(required = true)
protected String sourcefileWarnings;
/**
* Gets the value of the project property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProject() {
return project;
}
/**
* Sets the value of the project property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProject(String value) {
this.project = value;
}
/**
* Gets the value of the parseSourceFiles property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getParseSourceFiles() {
return parseSourceFiles;
}
/**
* Sets the value of the parseSourceFiles property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setParseSourceFiles(String value) {
this.parseSourceFiles = value;
}
/**
* Gets the value of the asymetricAnalysis property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAsymetricAnalysis() {
return asymetricAnalysis;
}
/**
* Sets the value of the asymetricAnalysis property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAsymetricAnalysis(String value) {
this.asymetricAnalysis = value;
}
/**
* Gets the value of the namespaceWarnings property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNamespaceWarnings() {
return namespaceWarnings;
}
/**
* Sets the value of the namespaceWarnings property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNamespaceWarnings(String value) {
this.namespaceWarnings = value;
}
/**
* Gets the value of the sourcefileWarnings property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSourcefileWarnings() {
return sourcefileWarnings;
}
/**
* Sets the value of the sourcefileWarnings property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSourcefileWarnings(String value) {
this.sourcefileWarnings = value;
}
}