Class BugCollection.History
- java.lang.Object
-
- io.github.dnalchemist.gitlab.codequality.spotbugs.BugCollection.History
-
- Enclosing class:
- BugCollection
public static class BugCollection.History 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="AppVersion" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="sequence" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /> <attribute name="timestamp" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedLong" /> <attribute name="release" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="codeSize" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /> <attribute name="numClasses" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" /> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBugCollection.History.AppVersionJava class for anonymous complex type
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<BugCollection.History.AppVersion>appVersion
-
Constructor Summary
Constructors Constructor Description History()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<BugCollection.History.AppVersion>getAppVersion()Gets the value of the appVersion property.
-
-
-
Field Detail
-
appVersion
protected java.util.List<BugCollection.History.AppVersion> appVersion
-
-
Method Detail
-
getAppVersion
public java.util.List<BugCollection.History.AppVersion> getAppVersion()
Gets the value of the appVersion 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 appVersion property.For example, to add a new item, do as follows:
getAppVersion().add(newItem);
Objects of the following type(s) are allowed in the list
BugCollection.History.AppVersion- Returns:
- The value of the appVersion property.
-
-