Coverage Report - fr.paris.lutece.plugins.releaser.business.jaxb.maven.PluginManagement
 
Classes in this File Line Coverage Branch Coverage Complexity
PluginManagement
0 %
0/4
N/A
1,333
PluginManagement$Plugins
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 plugin information for use in a group of POMs.
 21  
  *       
 22  
  * 
 23  
  * <p>Java class for PluginManagement complex type.
 24  
  * 
 25  
  * <p>The following schema fragment specifies the expected content contained within this class.
 26  
  * 
 27  
  * <pre>
 28  
  * &lt;complexType name="PluginManagement">
 29  
  *   &lt;complexContent>
 30  
  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 31  
  *       &lt;all>
 32  
  *         &lt;element name="plugins" 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="plugin" type="{http://maven.apache.org/POM/4.0.0}Plugin" 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 = "PluginManagement", propOrder = {
 53  
 
 54  
 })
 55  0
 public class PluginManagement {
 56  
 
 57  
     protected PluginManagement.Plugins plugins;
 58  
 
 59  
     /**
 60  
      * Gets the value of the plugins property.
 61  
      * 
 62  
      * @return
 63  
      *     possible object is
 64  
      *     {@link PluginManagement.Plugins }
 65  
      *     
 66  
      */
 67  
     public PluginManagement.Plugins getPlugins() {
 68  0
         return plugins;
 69  
     }
 70  
 
 71  
     /**
 72  
      * Sets the value of the plugins property.
 73  
      * 
 74  
      * @param value
 75  
      *     allowed object is
 76  
      *     {@link PluginManagement.Plugins }
 77  
      *     
 78  
      */
 79  
     public void setPlugins(PluginManagement.Plugins value) {
 80  0
         this.plugins = 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="plugin" type="{http://maven.apache.org/POM/4.0.0}Plugin" 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  
         "plugin"
 106  
     })
 107  0
     public static class Plugins {
 108  
 
 109  
         protected List<Plugin> plugin;
 110  
 
 111  
         /**
 112  
          * Gets the value of the plugin 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 plugin property.
 119  
          * 
 120  
          * <p>
 121  
          * For example, to add a new item, do as follows:
 122  
          * <pre>
 123  
          *    getPlugin().add(newItem);
 124  
          * </pre>
 125  
          * 
 126  
          * 
 127  
          * <p>
 128  
          * Objects of the following type(s) are allowed in the list
 129  
          * {@link Plugin }
 130  
          * 
 131  
          * 
 132  
          */
 133  
         public List<Plugin> getPlugin() {
 134  0
             if (plugin == null) {
 135  0
                 plugin = new ArrayList<Plugin>();
 136  
             }
 137  0
             return this.plugin;
 138  
         }
 139  
 
 140  
     }
 141  
 
 142  
 }