View Javadoc

1   //
2   // Generated stub from file:/Volumes/Little-G/Development/Workspace/mojo/plugins/retrotranslator-maven-plugin/tmp/retrotranslator-maven-plugin/target/checkout/src/main/groovy/org/codehaus/mojo/retrotranslator/TranslateMojo.groovy
3   //
4   
5   package org.codehaus.mojo.retrotranslator;
6   
7   import java.lang.*;
8   import java.io.*;
9   import java.net.*;
10  import java.util.*;
11  import groovy.lang.*;
12  import groovy.util.*;
13  import net.sf.retrotranslator.transformer.Retrotranslator;
14  import org.codehaus.plexus.util.FileUtils;
15  import org.apache.maven.shared.model.fileset.FileSet;
16  import org.apache.maven.shared.model.fileset.util.FileSetManager;
17  
18  /**
19   * Retrotranslates jars and classes.
20   *
21   * @goal translate
22   * @phase process-classes
23   * @version $Id: TranslateMojo.groovy 6588 2008-03-28 12:22:57Z bentmann $
24   */
25  public class TranslateMojo
26      extends RetrotranslateMojoSupport
27  {
28      /**
29       * The directory to place translated classes.
30       *
31       * @parameter expression="${destdir}"
32       */
33      private File destdir = null;
34      public File getDestdir() {
35          throw new InternalError("Stubbed method");
36      }
37      public void setDestdir(File value) {
38          throw new InternalError("Stubbed method");
39      }
40  
41      /**
42       * The JAR file to place translated classes.
43       *
44       * @parameter expression="${destjar}"
45       */
46      private File destjar = null;
47      public File getDestjar() {
48          throw new InternalError("Stubbed method");
49      }
50      public void setDestjar(File value) {
51          throw new InternalError("Stubbed method");
52      }
53  
54      /**
55       * Files to include in the translation.
56       *
57       * @parameter
58       */
59      private FileSet[] filesets = null;
60      public FileSet[] getFilesets() {
61          throw new InternalError("Stubbed method");
62      }
63      public void setFilesets(FileSet[] value) {
64          throw new InternalError("Stubbed method");
65      }
66  
67      /**
68       * Jar files to include in the translation.
69       *
70       * @parameter
71       */
72      private FileSet[] jarfilesets = null;
73      public FileSet[] getJarfilesets() {
74          throw new InternalError("Stubbed method");
75      }
76      public void setJarfilesets(FileSet[] value) {
77          throw new InternalError("Stubbed method");
78      }
79  
80      /**
81       * Directories to include in the translation.
82       *
83       * @parameter
84       */
85      private FileSet[] dirsets = null;
86      public FileSet[] getDirsets() {
87          throw new InternalError("Stubbed method");
88      }
89      public void setDirsets(FileSet[] value) {
90          throw new InternalError("Stubbed method");
91      }
92  
93      protected void configureRetrotranslator(Retrotranslator trans) {
94          throw new InternalError("Stubbed method");
95      }
96  
97      public groovy.lang.MetaClass getMetaClass() {
98          throw new InternalError("Stubbed method");
99      }
100 
101     public void setMetaClass(groovy.lang.MetaClass metaClass) {
102         throw new InternalError("Stubbed method");
103     }
104 
105     public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
106         throw new InternalError("Stubbed method");
107     }
108 
109     public java.lang.Object getProperty(java.lang.String name) {
110         throw new InternalError("Stubbed method");
111     }
112 
113     public void setProperty(java.lang.String name, java.lang.Object value) {
114         throw new InternalError("Stubbed method");
115     }
116 }