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/AttachingMojoSupport.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 org.apache.maven.project.MavenProject;
14  import org.apache.maven.project.MavenProjectHelper;
15  
16  /**
17   * Support for mojos which attach.
18   *
19   * @version $Id: AttachingMojoSupport.groovy 6588 2008-03-28 12:22:57Z bentmann $
20   */
21  abstract public class AttachingMojoSupport
22      extends RetrotranslateMojoSupport
23  {
24      /**
25       * Where to put the translated artifact.
26       *
27       * @parameter expression="${project.build.directory}"
28       * @required
29       */
30      private File outputDirectory = null;
31      public File getOutputDirectory() {
32          throw new InternalError("Stubbed method");
33      }
34      public void setOutputDirectory(File value) {
35          throw new InternalError("Stubbed method");
36      }
37  
38      /**
39       * The base-name of the generated artifact.
40       *
41       * @parameter expression="${project.build.finalName}"
42       * @required
43       */
44      private java.lang.String baseName = null;
45      public java.lang.String getBaseName() {
46          throw new InternalError("Stubbed method");
47      }
48      public void setBaseName(java.lang.String value) {
49          throw new InternalError("Stubbed method");
50      }
51  
52      /**
53       * Flag to enable/disable attaching retrotranslated artifacts.
54       *
55       * @parameter expression="${attach}" default-value="true"
56       */
57      private boolean attach = false;
58      public boolean getAttach() {
59          throw new InternalError("Stubbed method");
60      }
61      public boolean isAttach() {
62          throw new InternalError("Stubbed method");
63      }
64      public void setAttach(boolean value) {
65          throw new InternalError("Stubbed method");
66      }
67  
68      /**
69       * The classifier used when attaching the retrotranslated project artifact.
70       *
71       * @parameter expression="${classifier}" default-value="jdk14"
72       */
73      private java.lang.String classifier = null;
74      public java.lang.String getClassifier() {
75          throw new InternalError("Stubbed method");
76      }
77      public void setClassifier(java.lang.String value) {
78          throw new InternalError("Stubbed method");
79      }
80  
81      /**
82       * @parameter expression="${project}"
83       * @required
84       * @readonly
85       */
86      private MavenProject project = null;
87      public MavenProject getProject() {
88          throw new InternalError("Stubbed method");
89      }
90      public void setProject(MavenProject value) {
91          throw new InternalError("Stubbed method");
92      }
93  
94      /**
95       * @component
96       * @required
97       * @readonly
98       */
99      private MavenProjectHelper projectHelper = null;
100     public MavenProjectHelper getProjectHelper() {
101         throw new InternalError("Stubbed method");
102     }
103     public void setProjectHelper(MavenProjectHelper value) {
104         throw new InternalError("Stubbed method");
105     }
106 
107     public groovy.lang.MetaClass getMetaClass() {
108         throw new InternalError("Stubbed method");
109     }
110 
111     public void setMetaClass(groovy.lang.MetaClass metaClass) {
112         throw new InternalError("Stubbed method");
113     }
114 
115     public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
116         throw new InternalError("Stubbed method");
117     }
118 
119     public java.lang.Object getProperty(java.lang.String name) {
120         throw new InternalError("Stubbed method");
121     }
122 
123     public void setProperty(java.lang.String name, java.lang.Object value) {
124         throw new InternalError("Stubbed method");
125     }
126 }