Class BugCollection.History
- java.lang.Object
-
- de.chkal.maven.gitlab.codequality.spotbugs.BugCollection.History
-
- Enclosing class:
- BugCollection
public static class BugCollection.History extends Object
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 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 List<BugCollection.History.AppVersion>appVersion
-
Constructor Summary
Constructors Constructor Description History()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BugCollection.History.AppVersion>getAppVersion()Gets the value of the appVersion property.
-
-
-
Field Detail
-
appVersion
protected List<BugCollection.History.AppVersion> appVersion
-
-
Method Detail
-
getAppVersion
public 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 Jakarta XML Binding 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
-
-