Class ReportType
- java.lang.Object
-
- de.kontext_e.jqassistant.plugin.jacoco.jaxb.ReportType
-
public class ReportType extends java.lang.ObjectJava-Klasse für reportType complex type.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<complexType name="reportType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="sessioninfo" type="{}sessioninfoType"/> <element name="package" type="{}packageType" maxOccurs="unbounded" minOccurs="0"/> <element name="counter" type="{}counterType" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<PackageType>_packageprotected java.util.List<CounterType>counterprotected java.lang.Stringnameprotected SessioninfoTypesessioninfo
-
Constructor Summary
Constructors Constructor Description ReportType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<CounterType>getCounter()Gets the value of the counter property.java.lang.StringgetName()Ruft den Wert der name-Eigenschaft ab.java.util.List<PackageType>getPackage()Gets the value of the package property.SessioninfoTypegetSessioninfo()Ruft den Wert der sessioninfo-Eigenschaft ab.voidsetName(java.lang.String value)Legt den Wert der name-Eigenschaft fest.voidsetSessioninfo(SessioninfoType value)Legt den Wert der sessioninfo-Eigenschaft fest.
-
-
-
Field Detail
-
sessioninfo
protected SessioninfoType sessioninfo
-
_package
protected java.util.List<PackageType> _package
-
counter
protected java.util.List<CounterType> counter
-
name
protected java.lang.String name
-
-
Method Detail
-
getSessioninfo
public SessioninfoType getSessioninfo()
Ruft den Wert der sessioninfo-Eigenschaft ab.- Returns:
- possible object is
SessioninfoType
-
setSessioninfo
public void setSessioninfo(SessioninfoType value)
Legt den Wert der sessioninfo-Eigenschaft fest.- Parameters:
value- allowed object isSessioninfoType
-
getPackage
public java.util.List<PackageType> getPackage()
Gets the value of the package 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 package property.For example, to add a new item, do as follows:
getPackage().add(newItem);Objects of the following type(s) are allowed in the list
PackageType
-
getCounter
public java.util.List<CounterType> getCounter()
Gets the value of the counter 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 counter property.For example, to add a new item, do as follows:
getCounter().add(newItem);Objects of the following type(s) are allowed in the list
CounterType
-
getName
public java.lang.String getName()
Ruft den Wert der name-Eigenschaft ab.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Legt den Wert der name-Eigenschaft fest.- Parameters:
value- allowed object isString
-
-