![JAR search and dependency download from the Maven repository](/logo.png)
net.sf.sanity4j.gen.findbugs_1_3_9.BugPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sanity4j Show documentation
Show all versions of sanity4j Show documentation
Sanity4J was created to simplify running multiple static code
analysis tools on the Java projects. It provides a single entry
point to run all the selected tools and produce a consolidated
report, which presents all findings in an easily accessible
manner.
The newest version!
//
// 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: 2014.08.21 at 12:37:06 PM EST
//
package net.sf.sanity4j.gen.findbugs_1_3_9;
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* 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 ref="{http://net.sf.sanity4j/namespace/findbugs-1.3.9}ShortDescription"/>
* <element ref="{http://net.sf.sanity4j/namespace/findbugs-1.3.9}Details"/>
* </sequence>
* <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="abbrev" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="category" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="cweid" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"shortDescription",
"details"
})
@XmlRootElement(name = "BugPattern")
public class BugPattern {
@XmlElement(name = "ShortDescription", required = true)
protected java.lang.String shortDescription;
@XmlElement(name = "Details", required = true)
protected java.lang.String details;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected java.lang.String type;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected java.lang.String abbrev;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected java.lang.String category;
@XmlAttribute
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected java.lang.String cweid;
/**
* Gets the value of the shortDescription property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getShortDescription() {
return shortDescription;
}
/**
* Sets the value of the shortDescription property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setShortDescription(java.lang.String value) {
this.shortDescription = value;
}
/**
* Gets the value of the details property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getDetails() {
return details;
}
/**
* Sets the value of the details property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setDetails(java.lang.String value) {
this.details = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setType(java.lang.String value) {
this.type = value;
}
/**
* Gets the value of the abbrev property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getAbbrev() {
return abbrev;
}
/**
* Sets the value of the abbrev property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setAbbrev(java.lang.String value) {
this.abbrev = value;
}
/**
* Gets the value of the category property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getCategory() {
return category;
}
/**
* Sets the value of the category property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setCategory(java.lang.String value) {
this.category = value;
}
/**
* Gets the value of the cweid property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getCweid() {
return cweid;
}
/**
* Sets the value of the cweid property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setCweid(java.lang.String value) {
this.cweid = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy