View Javadoc

1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 1.7,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.model;
7   
8   /**
9    * Section for management of default plugin information for use in
10   * a group of POMs.
11   *       
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class PluginManagement
17      extends PluginContainer
18      implements java.io.Serializable, java.lang.Cloneable
19  {
20  
21        //-----------/
22       //- Methods -/
23      //-----------/
24  
25      /**
26       * Method clone.
27       * 
28       * @return PluginManagement
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      } //-- PluginManagement clone()
44  
45  }