View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.4.1 on 2012-01-20 18:05:12,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package org.apache.maven.model;
9   
10  /**
11   * Section for management of default plugin information for use in
12   * a group of POMs.
13   *       
14   * 
15   * @version $Revision$ $Date$
16   */
17  @SuppressWarnings( "all" )
18  public class PluginManagement
19      extends PluginContainer
20      implements java.io.Serializable, java.lang.Cloneable
21  {
22  
23        //-----------/
24       //- Methods -/
25      //-----------/
26  
27      /**
28       * Method clone.
29       * 
30       * @return PluginManagement
31       */
32      public PluginManagement clone()
33      {
34          try
35          {
36              PluginManagement copy = (PluginManagement) super.clone();
37  
38              return copy;
39          }
40          catch ( java.lang.Exception ex )
41          {
42              throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
43                  + " does not support clone()" ).initCause( ex );
44          }
45      } //-- PluginManagement clone()
46  
47  }