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 net.sf.retrotranslator.transformer.Retrotranslator;
14
15
16
17
18
19
20
21
22 public class TranslateProjectMojo
23 extends AttachingMojoSupport
24 {
25
26
27
28
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
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 }