Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
PluginManagement |
|
| 1.3333333333333333;1,333 | ||||
PluginManagement$Plugins |
|
| 1.3333333333333333;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 | * <complexType name="PluginManagement"> | |
29 | * <complexContent> | |
30 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
31 | * <all> | |
32 | * <element name="plugins" minOccurs="0"> | |
33 | * <complexType> | |
34 | * <complexContent> | |
35 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
36 | * <sequence> | |
37 | * <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}Plugin" maxOccurs="unbounded" minOccurs="0"/> | |
38 | * </sequence> | |
39 | * </restriction> | |
40 | * </complexContent> | |
41 | * </complexType> | |
42 | * </element> | |
43 | * </all> | |
44 | * </restriction> | |
45 | * </complexContent> | |
46 | * </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 | * <complexType> | |
91 | * <complexContent> | |
92 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
93 | * <sequence> | |
94 | * <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}Plugin" maxOccurs="unbounded" minOccurs="0"/> | |
95 | * </sequence> | |
96 | * </restriction> | |
97 | * </complexContent> | |
98 | * </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 | } |