001 /* 002 =================== DO NOT EDIT THIS FILE ==================== 003 Generated by Modello 1.4.1 on 2012-01-20 18:09:18, 004 any modifications will be overwritten. 005 ============================================================== 006 */ 007 008 package org.apache.maven.model; 009 010 /** 011 * Section for management of default plugin information for use in 012 * a group of POMs. 013 * 014 * 015 * @version $Revision$ $Date$ 016 */ 017 @SuppressWarnings( "all" ) 018 public class PluginManagement 019 extends PluginContainer 020 implements java.io.Serializable, java.lang.Cloneable 021 { 022 023 //-----------/ 024 //- Methods -/ 025 //-----------/ 026 027 /** 028 * Method clone. 029 * 030 * @return PluginManagement 031 */ 032 public PluginManagement clone() 033 { 034 try 035 { 036 PluginManagement copy = (PluginManagement) super.clone(); 037 038 return copy; 039 } 040 catch ( java.lang.Exception ex ) 041 { 042 throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName() 043 + " does not support clone()" ).initCause( ex ); 044 } 045 } //-- PluginManagement clone() 046 047 }