| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Prerequisites |
|
| 1.0;1 |
| 1 | // | |
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 | |
| 3 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | |
| 4 | // Any modifications to this file will be lost upon recompilation of the source schema. | |
| 5 | // Generated on: 2012.11.09 at 12:33:57 PM EST | |
| 6 | // | |
| 7 | ||
| 8 | ||
| 9 | package org.owasp.dependencycheck.jaxb.pom.generated; | |
| 10 | ||
| 11 | import javax.annotation.Generated; | |
| 12 | import javax.xml.bind.annotation.XmlAccessType; | |
| 13 | import javax.xml.bind.annotation.XmlAccessorType; | |
| 14 | import javax.xml.bind.annotation.XmlElement; | |
| 15 | import javax.xml.bind.annotation.XmlType; | |
| 16 | ||
| 17 | ||
| 18 | /** | |
| 19 | * Describes the prerequisites a project can have. | |
| 20 | * | |
| 21 | * <p>Java class for Prerequisites complex type. | |
| 22 | * | |
| 23 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 24 | * | |
| 25 | * <pre> | |
| 26 | * <complexType name="Prerequisites"> | |
| 27 | * <complexContent> | |
| 28 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 29 | * <all> | |
| 30 | * <element name="maven" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> | |
| 31 | * </all> | |
| 32 | * </restriction> | |
| 33 | * </complexContent> | |
| 34 | * </complexType> | |
| 35 | * </pre> | |
| 36 | * | |
| 37 | * | |
| 38 | */ | |
| 39 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 40 | @XmlType(name = "Prerequisites", propOrder = { | |
| 41 | ||
| 42 | }) | |
| 43 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 44 | 0 | public class Prerequisites { |
| 45 | ||
| 46 | @XmlElement(defaultValue = "2.0") | |
| 47 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 48 | protected String maven; | |
| 49 | ||
| 50 | /** | |
| 51 | * Gets the value of the maven property. | |
| 52 | * | |
| 53 | * @return | |
| 54 | * possible object is | |
| 55 | * {@link String } | |
| 56 | * | |
| 57 | */ | |
| 58 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 59 | public String getMaven() { | |
| 60 | 0 | return maven; |
| 61 | } | |
| 62 | ||
| 63 | /** | |
| 64 | * Sets the value of the maven property. | |
| 65 | * | |
| 66 | * @param value | |
| 67 | * allowed object is | |
| 68 | * {@link String } | |
| 69 | * | |
| 70 | */ | |
| 71 | @Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2012-11-09T12:33:57-05:00", comments = "JAXB RI vJAXB 2.1.10 in JDK 6") | |
| 72 | public void setMaven(String value) { | |
| 73 | 0 | this.maven = value; |
| 74 | 0 | } |
| 75 | ||
| 76 | } |