Class BugCollection.Errors
- java.lang.Object
-
- io.github.dnalchemist.gitlab.codequality.spotbugs.BugCollection.Errors
-
- Enclosing class:
- BugCollection
public static class BugCollection.Errors extends java.lang.ObjectJava 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 name="MissingClass" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="errors" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /> <attribute name="missingClasses" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Longerrorsprotected java.util.List<java.lang.String>missingClassprotected java.lang.LongmissingClasses
-
Constructor Summary
Constructors Constructor Description Errors()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.LonggetErrors()Gets the value of the errors property.java.util.List<java.lang.String>getMissingClass()Gets the value of the missingClass property.java.lang.LonggetMissingClasses()Gets the value of the missingClasses property.voidsetErrors(java.lang.Long value)Sets the value of the errors property.voidsetMissingClasses(java.lang.Long value)Sets the value of the missingClasses property.
-
-
-
Method Detail
-
getMissingClass
public java.util.List<java.lang.String> getMissingClass()
Gets the value of the missingClass property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the missingClass property.For example, to add a new item, do as follows:
getMissingClass().add(newItem);
Objects of the following type(s) are allowed in the list
String- Returns:
- The value of the missingClass property.
-
getErrors
public java.lang.Long getErrors()
Gets the value of the errors property.- Returns:
- possible object is
Long
-
setErrors
public void setErrors(java.lang.Long value)
Sets the value of the errors property.- Parameters:
value- allowed object isLong
-
getMissingClasses
public java.lang.Long getMissingClasses()
Gets the value of the missingClasses property.- Returns:
- possible object is
Long
-
setMissingClasses
public void setMissingClasses(java.lang.Long value)
Sets the value of the missingClasses property.- Parameters:
value- allowed object isLong
-
-