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 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
20
21
22
23
24
25 public class TranslateMojo
26 extends RetrotranslateMojoSupport
27 {
28
29
30
31
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
43
44
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
56
57
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
69
70
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
82
83
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 }