Class Issues
- java.lang.Object
-
- net.florianschoppmann.issuetracking.youtrack.restold.Issues
-
public class Issues 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="issue" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="field" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/> </sequence> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element> <element name="comment" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="author" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="text" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="markdown" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="created" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="updated" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Issues.Issue
Java class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected List<Issues.Issue>
issue
-
Constructor Summary
Constructors Constructor Description Issues()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Issues.Issue>
getIssue()
Gets the value of the issue property.
-
-
-
Field Detail
-
issue
protected List<Issues.Issue> issue
-
-
Method Detail
-
getIssue
public List<Issues.Issue> getIssue()
Gets the value of the issue 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
set
method for the issue property.For example, to add a new item, do as follows:
getIssue().add(newItem);
Objects of the following type(s) are allowed in the list
Issues.Issue
-
-