1
2
3
4
5
6 package org.apache.maven.model;
7
8
9
10
11
12
13
14
15 @SuppressWarnings( "all" )
16 public class PluginManagement
17 extends PluginContainer
18 implements java.io.Serializable, java.lang.Cloneable
19 {
20
21
22
23
24
25
26
27
28
29
30 public PluginManagement clone()
31 {
32 try
33 {
34 PluginManagement copy = (PluginManagement) super.clone();
35
36 return copy;
37 }
38 catch ( java.lang.Exception ex )
39 {
40 throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
41 + " does not support clone()" ).initCause( ex );
42 }
43 }
44
45 }