com.hello2morrow.sonarplugin.xsd.XsdMetric Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-sonargraph-plugin Show documentation
Show all versions of sonar-sonargraph-plugin Show documentation
Provides architecture governance features accompanied by metrics about cyclic dependencies and other structural aspects.
//
// 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: 2012.08.03 at 10:46:14 AM MESZ
//
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 xsdMetric complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="xsdMetric">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="sort" type="{}xsdMetricSort" default="ascending" />
* <attribute name="projectDescription" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="systemDescription" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="standardName" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "xsdMetric")
public class XsdMetric {
@XmlAttribute
protected XsdMetricSort sort;
@XmlAttribute
protected String projectDescription;
@XmlAttribute
protected String systemDescription;
@XmlAttribute(required = true)
protected String name;
@XmlAttribute
protected String standardName;
/**
* Gets the value of the sort property.
*
* @return
* possible object is
* {@link XsdMetricSort }
*
*/
public XsdMetricSort getSort() {
if (sort == null) {
return XsdMetricSort.ASCENDING;
} else {
return sort;
}
}
/**
* Sets the value of the sort property.
*
* @param value
* allowed object is
* {@link XsdMetricSort }
*
*/
public void setSort(XsdMetricSort value) {
this.sort = value;
}
/**
* Gets the value of the projectDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProjectDescription() {
return projectDescription;
}
/**
* Sets the value of the projectDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProjectDescription(String value) {
this.projectDescription = value;
}
/**
* Gets the value of the systemDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSystemDescription() {
return systemDescription;
}
/**
* Sets the value of the systemDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSystemDescription(String value) {
this.systemDescription = 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 standardName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStandardName() {
return standardName;
}
/**
* Sets the value of the standardName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStandardName(String value) {
this.standardName = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy