net.sf.sanity4j.gen.cobertura_1_9_2.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.
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.cobertura_1_9_2;
import java.math.BigDecimal;
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/cobertura-1.9.2}lines"/>
* </sequence>
* <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="line-rate" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" />
* <attribute name="branch-rate" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"lines"
})
@XmlRootElement(name = "method")
public class Method {
@XmlElement(required = true)
protected Lines lines;
@XmlAttribute(required = true)
protected String name;
@XmlAttribute(required = true)
protected String signature;
@XmlAttribute(name = "line-rate", required = true)
protected BigDecimal lineRate;
@XmlAttribute(name = "branch-rate", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected String branchRate;
/**
* Gets the value of the lines property.
*
* @return
* possible object is
* {@link Lines }
*
*/
public Lines getLines() {
return lines;
}
/**
* Sets the value of the lines property.
*
* @param value
* allowed object is
* {@link Lines }
*
*/
public void setLines(Lines value) {
this.lines = 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;
}
/**
* Gets the value of the signature property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSignature() {
return signature;
}
/**
* Sets the value of the signature property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSignature(String value) {
this.signature = value;
}
/**
* Gets the value of the lineRate property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getLineRate() {
return lineRate;
}
/**
* Sets the value of the lineRate property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setLineRate(BigDecimal value) {
this.lineRate = value;
}
/**
* Gets the value of the branchRate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBranchRate() {
return branchRate;
}
/**
* Sets the value of the branchRate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBranchRate(String value) {
this.branchRate = value;
}
}