Class BugCollection.Project
- java.lang.Object
-
- io.github.dnalchemist.gitlab.codequality.spotbugs.BugCollection.Project
-
- Enclosing class:
- BugCollection
public static class BugCollection.Project 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="Jar" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="AuxClasspathEntry" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="SrcDir" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="WrkDir" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Plugin" maxOccurs="unbounded" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="enabled" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element> <element name="SuppressionFilter" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{}Matcher" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType> </element> <element name="Cloud" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Property" maxOccurs="unbounded" minOccurs="0"> <complexType> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute name="key" type="{http://www.w3.org/2001/XMLSchema}string" /> </extension> </simpleContent> </complexType> </element> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="online" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="synced" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="detailsUrl" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element> </sequence> <attribute name="filename" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="projectName" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBugCollection.Project.CloudJava class for anonymous complex typestatic classBugCollection.Project.PluginJava class for anonymous complex typestatic classBugCollection.Project.SuppressionFilterJava class for anonymous complex type
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<java.lang.String>auxClasspathEntryprotected BugCollection.Project.Cloudcloudprotected java.lang.Stringfilenameprotected java.util.List<java.lang.String>jarprotected java.util.List<BugCollection.Project.Plugin>pluginprotected java.lang.StringprojectNameprotected java.util.List<java.lang.String>srcDirprotected BugCollection.Project.SuppressionFiltersuppressionFilterprotected java.lang.StringwrkDir
-
Constructor Summary
Constructors Constructor Description Project()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>getAuxClasspathEntry()Gets the value of the auxClasspathEntry property.BugCollection.Project.CloudgetCloud()Gets the value of the cloud property.java.lang.StringgetFilename()Gets the value of the filename property.java.util.List<java.lang.String>getJar()Gets the value of the jar property.java.util.List<BugCollection.Project.Plugin>getPlugin()Gets the value of the plugin property.java.lang.StringgetProjectName()Gets the value of the projectName property.java.util.List<java.lang.String>getSrcDir()Gets the value of the srcDir property.BugCollection.Project.SuppressionFiltergetSuppressionFilter()Gets the value of the suppressionFilter property.java.lang.StringgetWrkDir()Gets the value of the wrkDir property.voidsetCloud(BugCollection.Project.Cloud value)Sets the value of the cloud property.voidsetFilename(java.lang.String value)Sets the value of the filename property.voidsetProjectName(java.lang.String value)Sets the value of the projectName property.voidsetSuppressionFilter(BugCollection.Project.SuppressionFilter value)Sets the value of the suppressionFilter property.voidsetWrkDir(java.lang.String value)Sets the value of the wrkDir property.
-
-
-
Field Detail
-
jar
protected java.util.List<java.lang.String> jar
-
auxClasspathEntry
protected java.util.List<java.lang.String> auxClasspathEntry
-
srcDir
protected java.util.List<java.lang.String> srcDir
-
wrkDir
protected java.lang.String wrkDir
-
plugin
protected java.util.List<BugCollection.Project.Plugin> plugin
-
suppressionFilter
protected BugCollection.Project.SuppressionFilter suppressionFilter
-
cloud
protected BugCollection.Project.Cloud cloud
-
filename
protected java.lang.String filename
-
projectName
protected java.lang.String projectName
-
-
Method Detail
-
getJar
public java.util.List<java.lang.String> getJar()
Gets the value of the jar 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 jar property.For example, to add a new item, do as follows:
getJar().add(newItem);
Objects of the following type(s) are allowed in the list
String- Returns:
- The value of the jar property.
-
getAuxClasspathEntry
public java.util.List<java.lang.String> getAuxClasspathEntry()
Gets the value of the auxClasspathEntry 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 auxClasspathEntry property.For example, to add a new item, do as follows:
getAuxClasspathEntry().add(newItem);
Objects of the following type(s) are allowed in the list
String- Returns:
- The value of the auxClasspathEntry property.
-
getSrcDir
public java.util.List<java.lang.String> getSrcDir()
Gets the value of the srcDir 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 srcDir property.For example, to add a new item, do as follows:
getSrcDir().add(newItem);
Objects of the following type(s) are allowed in the list
String- Returns:
- The value of the srcDir property.
-
getWrkDir
public java.lang.String getWrkDir()
Gets the value of the wrkDir property.- Returns:
- possible object is
String
-
setWrkDir
public void setWrkDir(java.lang.String value)
Sets the value of the wrkDir property.- Parameters:
value- allowed object isString
-
getPlugin
public java.util.List<BugCollection.Project.Plugin> getPlugin()
Gets the value of the plugin 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 plugin property.For example, to add a new item, do as follows:
getPlugin().add(newItem);
Objects of the following type(s) are allowed in the list
BugCollection.Project.Plugin- Returns:
- The value of the plugin property.
-
getSuppressionFilter
public BugCollection.Project.SuppressionFilter getSuppressionFilter()
Gets the value of the suppressionFilter property.- Returns:
- possible object is
BugCollection.Project.SuppressionFilter
-
setSuppressionFilter
public void setSuppressionFilter(BugCollection.Project.SuppressionFilter value)
Sets the value of the suppressionFilter property.- Parameters:
value- allowed object isBugCollection.Project.SuppressionFilter
-
getCloud
public BugCollection.Project.Cloud getCloud()
Gets the value of the cloud property.- Returns:
- possible object is
BugCollection.Project.Cloud
-
setCloud
public void setCloud(BugCollection.Project.Cloud value)
Sets the value of the cloud property.- Parameters:
value- allowed object isBugCollection.Project.Cloud
-
getFilename
public java.lang.String getFilename()
Gets the value of the filename property.- Returns:
- possible object is
String
-
setFilename
public void setFilename(java.lang.String value)
Sets the value of the filename property.- Parameters:
value- allowed object isString
-
getProjectName
public java.lang.String getProjectName()
Gets the value of the projectName property.- Returns:
- possible object is
String
-
setProjectName
public void setProjectName(java.lang.String value)
Sets the value of the projectName property.- Parameters:
value- allowed object isString
-
-