Class CheckstyleType
- java.lang.Object
-
- io.github.dnalchemist.gitlab.codequality.checkstyle.CheckstyleType
-
public class CheckstyleType extends java.lang.ObjectJava class for checkstyleType complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="checkstyleType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="file" type="{}fileType" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description CheckstyleType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<FileType>getFile()Gets the value of the file property.java.lang.StringgetVersion()Gets the value of the version property.voidsetVersion(java.lang.String value)Sets the value of the version property.
-
-
-
Field Detail
-
file
protected java.util.List<FileType> file
-
version
protected java.lang.String version
-
-
Method Detail
-
getFile
public java.util.List<FileType> getFile()
Gets the value of the file 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 file property.For example, to add a new item, do as follows:
getFile().add(newItem);
Objects of the following type(s) are allowed in the list
FileType- Returns:
- The value of the file property.
-
getVersion
public java.lang.String getVersion()
Gets the value of the version property.- Returns:
- possible object is
String
-
setVersion
public void setVersion(java.lang.String value)
Sets the value of the version property.- Parameters:
value- allowed object isString
-
-