// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.06.23 at 11:23:18 ���� CST // package jef.tools.maven.jaxb; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * 3.0.0+ * * <p>Java class for BuildBase complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="BuildBase"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="defaultGoal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="resources" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="resource" type="{http://maven.apache.org/POM/4.0.0}Resource" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="testResources" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="testResource" type="{http://maven.apache.org/POM/4.0.0}Resource" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="directory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="finalName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="filters" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * <element name="pluginManagement" type="{http://maven.apache.org/POM/4.0.0}PluginManagement" minOccurs="0"/> * <element name="plugins" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}Plugin" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BuildBase", propOrder = { }) public class BuildBase { protected String defaultGoal; protected BuildBase.Resources resources; protected BuildBase.TestResources testResources; protected String directory; protected String finalName; protected BuildBase.Filters filters; protected PluginManagement pluginManagement; protected BuildBase.Plugins plugins; /** * Gets the value of the defaultGoal property. * * @return * possible object is * {@link String } * */ public String getDefaultGoal() { return defaultGoal; } /** * Sets the value of the defaultGoal property. * * @param value * allowed object is * {@link String } * */ public void setDefaultGoal(String value) { this.defaultGoal = value; } /** * Gets the value of the resources property. * * @return * possible object is * {@link BuildBase.Resources } * */ public BuildBase.Resources getResources() { return resources; } /** * Sets the value of the resources property. * * @param value * allowed object is * {@link BuildBase.Resources } * */ public void setResources(BuildBase.Resources value) { this.resources = value; } /** * Gets the value of the testResources property. * * @return * possible object is * {@link BuildBase.TestResources } * */ public BuildBase.TestResources getTestResources() { return testResources; } /** * Sets the value of the testResources property. * * @param value * allowed object is * {@link BuildBase.TestResources } * */ public void setTestResources(BuildBase.TestResources value) { this.testResources = value; } /** * Gets the value of the directory property. * * @return * possible object is * {@link String } * */ public String getDirectory() { return directory; } /** * Sets the value of the directory property. * * @param value * allowed object is * {@link String } * */ public void setDirectory(String value) { this.directory = value; } /** * Gets the value of the finalName property. * * @return * possible object is * {@link String } * */ public String getFinalName() { return finalName; } /** * Sets the value of the finalName property. * * @param value * allowed object is * {@link String } * */ public void setFinalName(String value) { this.finalName = value; } /** * Gets the value of the filters property. * * @return * possible object is * {@link BuildBase.Filters } * */ public BuildBase.Filters getFilters() { return filters; } /** * Sets the value of the filters property. * * @param value * allowed object is * {@link BuildBase.Filters } * */ public void setFilters(BuildBase.Filters value) { this.filters = value; } /** * Gets the value of the pluginManagement property. * * @return * possible object is * {@link PluginManagement } * */ public PluginManagement getPluginManagement() { return pluginManagement; } /** * Sets the value of the pluginManagement property. * * @param value * allowed object is * {@link PluginManagement } * */ public void setPluginManagement(PluginManagement value) { this.pluginManagement = value; } /** * Gets the value of the plugins property. * * @return * possible object is * {@link BuildBase.Plugins } * */ public BuildBase.Plugins getPlugins() { return plugins; } /** * Sets the value of the plugins property. * * @param value * allowed object is * {@link BuildBase.Plugins } * */ public void setPlugins(BuildBase.Plugins value) { this.plugins = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "filter" }) public static class Filters { protected List<String> filter; /** * Gets the value of the filter property. * * <p> * 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 <CODE>set</CODE> method for the filter property. * * <p> * For example, to add a new item, do as follows: * <pre> * getFilter().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getFilter() { if (filter == null) { filter = new ArrayList<String>(); } return this.filter; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}Plugin" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "plugin" }) public static class Plugins { protected List<Plugin> plugin; /** * Gets the value of the plugin property. * * <p> * 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 <CODE>set</CODE> method for the plugin property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPlugin().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Plugin } * * */ public List<Plugin> getPlugin() { if (plugin == null) { plugin = new ArrayList<Plugin>(); } return this.plugin; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="resource" type="{http://maven.apache.org/POM/4.0.0}Resource" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "resource" }) public static class Resources { protected List<Resource> resource; /** * Gets the value of the resource property. * * <p> * 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 <CODE>set</CODE> method for the resource property. * * <p> * For example, to add a new item, do as follows: * <pre> * getResource().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Resource } * * */ public List<Resource> getResource() { if (resource == null) { resource = new ArrayList<Resource>(); } return this.resource; } } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="testResource" type="{http://maven.apache.org/POM/4.0.0}Resource" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "testResource" }) public static class TestResources { protected List<Resource> testResource; /** * Gets the value of the testResource property. * * <p> * 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 <CODE>set</CODE> method for the testResource property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTestResource().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link Resource } * * */ public List<Resource> getTestResource() { if (testResource == null) { testResource = new ArrayList<Resource>(); } return this.testResource; } } }