Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.DependencyManagement
 
Classes in this File Line Coverage Branch Coverage Complexity
DependencyManagement
0 %
0/4
N/A
1,333
DependencyManagement$Dependencies
0 %
0/4
0 %
0/2
1,333
 
 1  
 //
 2  
 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
 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: 2017.05.11 at 06:51:22 PM CEST 
 6  
 //
 7  
 
 8  
 
 9  
 package fr.paris.lutece.plugins.releaser.business.jaxb.maven;
 10  
 
 11  
 import java.util.ArrayList;
 12  
 import java.util.List;
 13  
 import javax.xml.bind.annotation.XmlAccessType;
 14  
 import javax.xml.bind.annotation.XmlAccessorType;
 15  
 import javax.xml.bind.annotation.XmlType;
 16  
 
 17  
 
 18  
 /**
 19  
  * 
 20  
  *         Section for management of default dependency information for use in a group of POMs.
 21  
  *       
 22  
  * 
 23  
  * <p>Java class for DependencyManagement complex type.
 24  
  * 
 25  
  * <p>The following schema fragment specifies the expected content contained within this class.
 26  
  * 
 27  
  * <pre>
 28  
  * &lt;complexType name="DependencyManagement">
 29  
  *   &lt;complexContent>
 30  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 31  
  *       &lt;all>
 32  
  *         &lt;element name="dependencies" minOccurs="0">
 33  
  *           &lt;complexType>
 34  
  *             &lt;complexContent>
 35  
  *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 36  
  *                 &lt;sequence>
 37  
  *                   &lt;element name="dependency" type="{http://maven.apache.org/POM/4.0.0}Dependency" maxOccurs="unbounded" minOccurs="0"/>
 38  
  *                 &lt;/sequence>
 39  
  *               &lt;/restriction>
 40  
  *             &lt;/complexContent>
 41  
  *           &lt;/complexType>
 42  
  *         &lt;/element>
 43  
  *       &lt;/all>
 44  
  *     &lt;/restriction>
 45  
  *   &lt;/complexContent>
 46  
  * &lt;/complexType>
 47  
  * </pre>
 48  
  * 
 49  
  * 
 50  
  */
 51  
 @XmlAccessorType(XmlAccessType.FIELD)
 52  
 @XmlType(name = "DependencyManagement", propOrder = {
 53  
 
 54  
 })
 55  0
 public class DependencyManagement {
 56  
 
 57  
     protected DependencyManagement.Dependencies dependencies;
 58  
 
 59  
     /**
 60  
      * Gets the value of the dependencies property.
 61  
      * 
 62  
      * @return
 63  
      *     possible object is
 64  
      *     {@link DependencyManagement.Dependencies }
 65  
      *     
 66  
      */
 67  
     public DependencyManagement.Dependencies getDependencies() {
 68  0
         return dependencies;
 69  
     }
 70  
 
 71  
     /**
 72  
      * Sets the value of the dependencies property.
 73  
      * 
 74  
      * @param value
 75  
      *     allowed object is
 76  
      *     {@link DependencyManagement.Dependencies }
 77  
      *     
 78  
      */
 79  
     public void setDependencies(DependencyManagement.Dependencies value) {
 80  0
         this.dependencies = value;
 81  0
     }
 82  
 
 83  
 
 84  
     /**
 85  
      * <p>Java class for anonymous complex type.
 86  
      * 
 87  
      * <p>The following schema fragment specifies the expected content contained within this class.
 88  
      * 
 89  
      * <pre>
 90  
      * &lt;complexType>
 91  
      *   &lt;complexContent>
 92  
      *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 93  
      *       &lt;sequence>
 94  
      *         &lt;element name="dependency" type="{http://maven.apache.org/POM/4.0.0}Dependency" maxOccurs="unbounded" minOccurs="0"/>
 95  
      *       &lt;/sequence>
 96  
      *     &lt;/restriction>
 97  
      *   &lt;/complexContent>
 98  
      * &lt;/complexType>
 99  
      * </pre>
 100  
      * 
 101  
      * 
 102  
      */
 103  
     @XmlAccessorType(XmlAccessType.FIELD)
 104  
     @XmlType(name = "", propOrder = {
 105  
         "dependency"
 106  
     })
 107  0
     public static class Dependencies {
 108  
 
 109  
         protected List<Dependency> dependency;
 110  
 
 111  
         /**
 112  
          * Gets the value of the dependency property.
 113  
          * 
 114  
          * <p>
 115  
          * This accessor method returns a reference to the live list,
 116  
          * not a snapshot. Therefore any modification you make to the
 117  
          * returned list will be present inside the JAXB object.
 118  
          * This is why there is not a <CODE>set</CODE> method for the dependency property.
 119  
          * 
 120  
          * <p>
 121  
          * For example, to add a new item, do as follows:
 122  
          * <pre>
 123  
          *    getDependency().add(newItem);
 124  
          * </pre>
 125  
          * 
 126  
          * 
 127  
          * <p>
 128  
          * Objects of the following type(s) are allowed in the list
 129  
          * {@link Dependency }
 130  
          * 
 131  
          * 
 132  
          */
 133  
         public List<Dependency> getDependency() {
 134  0
             if (dependency == null) {
 135  0
                 dependency = new ArrayList<Dependency>();
 136  
             }
 137  0
             return this.dependency;
 138  
         }
 139  
 
 140  
     }
 141  
 
 142  
 }