1
2
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
18
19
20
21 abstract public class AttachingMojoSupport
22 extends RetrotranslateMojoSupport
23 {
24
25
26
27
28
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
40
41
42
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
54
55
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
70
71
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
83
84
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
96
97
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 }