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/TranslateProjectMojo.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  
15  /**
16   * Retrotranslates the artifact for the current project.
17   *
18   * @goal translate-project
19   * @phase package
20   * @version $Id: TranslateProjectMojo.groovy 6588 2008-03-28 12:22:57Z bentmann $
21   */
22  public class TranslateProjectMojo
23      extends AttachingMojoSupport
24  {
25      /**
26       * Replace the artifact with the retrotranslated artifact.
27       *
28       * @parameter expression="${replace}"
29       */
30      private boolean replace = false;
31      public boolean getReplace() {
32          throw new InternalError("Stubbed method");
33      }
34      public boolean isReplace() {
35          throw new InternalError("Stubbed method");
36      }
37      public void setReplace(boolean value) {
38          throw new InternalError("Stubbed method");
39      }
40  
41      /**
42       * @parameter expression="${destJar}"
43       */
44      private File destJar = null;
45      public File getDestJar() {
46          throw new InternalError("Stubbed method");
47      }
48      public void setDestJar(File value) {
49          throw new InternalError("Stubbed method");
50      }
51  
52      public void execute() {
53          throw new InternalError("Stubbed method");
54      }
55  
56      protected void configureRetrotranslator(Retrotranslator trans) {
57          throw new InternalError("Stubbed method");
58      }
59  
60      public groovy.lang.MetaClass getMetaClass() {
61          throw new InternalError("Stubbed method");
62      }
63  
64      public void setMetaClass(groovy.lang.MetaClass metaClass) {
65          throw new InternalError("Stubbed method");
66      }
67  
68      public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
69          throw new InternalError("Stubbed method");
70      }
71  
72      public java.lang.Object getProperty(java.lang.String name) {
73          throw new InternalError("Stubbed method");
74      }
75  
76      public void setProperty(java.lang.String name, java.lang.Object value) {
77          throw new InternalError("Stubbed method");
78      }
79  }