![JAR search and dependency download from the Maven repository](/logo.png)
net.sf.sanity4j.gen.findbugs_1_3_9.LocalVariable 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}Message"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="register" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="pc" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="role" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"message"
})
@XmlRootElement(name = "LocalVariable")
public class LocalVariable {
@XmlElement(name = "Message", required = true)
protected java.lang.String message;
@XmlAttribute(required = true)
protected java.lang.String name;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected java.lang.String register;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected java.lang.String pc;
@XmlAttribute(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected java.lang.String role;
/**
* 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 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 register property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getRegister() {
return register;
}
/**
* Sets the value of the register property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setRegister(java.lang.String value) {
this.register = value;
}
/**
* Gets the value of the pc property.
*
* @return
* possible object is
* {@link java.lang.String }
*
*/
public java.lang.String getPc() {
return pc;
}
/**
* Sets the value of the pc property.
*
* @param value
* allowed object is
* {@link java.lang.String }
*
*/
public void setPc(java.lang.String value) {
this.pc = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy