001    //
002    // Generated stub from file:/builddir/build/BUILD/gmaven-1.3/gmaven-examples/clean-maven-plugin/src/main/groovy/org/codehaus/gmaven/examples/clean/CleanMojo.groovy
003    //
004    
005    package org.codehaus.gmaven.examples.clean;
006    
007    import java.lang.*;
008    import java.io.*;
009    import java.net.*;
010    import java.util.*;
011    import groovy.lang.*;
012    import groovy.util.*;
013    import java.math.BigDecimal;
014    import java.math.BigInteger;
015    import org.codehaus.gmaven.mojo.GroovyMojo;
016    import org.apache.maven.project.MavenProject;
017    import org.apache.maven.shared.model.fileset.FileSet;
018    import org.apache.maven.shared.model.fileset.util.FileSetManager;
019    
020    /**
021     * Cleans build generated output.
022     *
023     * @goal clean
024     * @version $Id: CleanMojo.groovy 10 2009-07-16 09:23:15Z user57 $
025     */
026    public class CleanMojo
027        extends GroovyMojo
028        implements groovy.lang.GroovyObject
029    {
030        /**
031         * @parameter expression="${project}"
032         * @required
033         * @readonly
034         */
035        private MavenProject project = null;
036        public MavenProject getProject() {
037            throw new InternalError("Stubbed method");
038        }
039        public void setProject(MavenProject value) {
040            throw new InternalError("Stubbed method");
041        }
042    
043        /**
044         * Extra files to be deleted in addition to the default directories.
045         *
046         * @parameter
047         */
048        private FileSet[] filesets = null;
049        public FileSet[] getFilesets() {
050            throw new InternalError("Stubbed method");
051        }
052        public void setFilesets(FileSet[] value) {
053            throw new InternalError("Stubbed method");
054        }
055    
056        public void execute() {
057            throw new InternalError("Stubbed method");
058        }
059    
060        public groovy.lang.MetaClass getMetaClass() {
061            throw new InternalError("Stubbed method");
062        }
063    
064        public void setMetaClass(groovy.lang.MetaClass metaClass) {
065            throw new InternalError("Stubbed method");
066        }
067    
068        public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
069            throw new InternalError("Stubbed method");
070        }
071    
072        public java.lang.Object getProperty(java.lang.String name) {
073            throw new InternalError("Stubbed method");
074        }
075    
076        public void setProperty(java.lang.String name, java.lang.Object value) {
077            throw new InternalError("Stubbed method");
078        }
079    }