net.sf.sanity4j.gen.findbugs_1_3_9.Method 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.
//
// 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.04.03 at 10:38:17 AM 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.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}SourceLine"/>
* <element ref="{http://net.sf.sanity4j/namespace/findbugs-1.3.9}Message"/>
* </sequence>
* <attribute name="classname" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="signature" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="isStatic" use="required">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="false"/>
* <enumeration value="true"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="primary" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="role" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sourceLine",
"message"
})
@XmlRootElement(name = "Method")
public class Method {
@XmlElement(name = "SourceLine", required = true)
protected SourceLine sourceLine;
@XmlElement(name = "Message", required = true)
protected java.lang.String message;
@XmlAttribute(required = true)
protected java.lang.String classname;
@XmlAttribute(required = true)
protected java.lang.String name;
@XmlAttribute(required = true)
protected java.lang.String signature;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected java.lang.String isStatic;
@XmlAttribute
protected Boolean primary;
@XmlAttribute
protected java.lang.String role;
/**
* Gets the value of the sourceLine property.
*
* @return
* possible object is
* {@link SourceLine }
*
*/
public SourceLine getSourceLine() {
return sourceLine;
}
/**
* Sets the value of the sourceLine property.
*
* @param value
* allowed object is
* {@link SourceLine }
*
*/
public void setSourceLine(SourceLine value) {
this.sourceLine = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setMessage(java.lang.String value) {
this.message = value;
}
/**
* Gets the value of the classname property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getClassname() {
return classname;
}
/**
* Sets the value of the classname property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setClassname(java.lang.String value) {
this.classname = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setName(java.lang.String value) {
this.name = value;
}
/**
* Gets the value of the signature property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getSignature() {
return signature;
}
/**
* Sets the value of the signature property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setSignature(java.lang.String value) {
this.signature = value;
}
/**
* Gets the value of the isStatic property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getIsStatic() {
return isStatic;
}
/**
* Sets the value of the isStatic property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setIsStatic(java.lang.String value) {
this.isStatic = value;
}
/**
* Gets the value of the primary property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean getPrimary() {
return primary;
}
/**
* Sets the value of the primary property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setPrimary(Boolean value) {
this.primary = value;
}
/**
* Gets the value of the role property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getRole() {
return role;
}
/**
* Sets the value of the role property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setRole(java.lang.String value) {
this.role = value;
}
}