01: package org.antmod.tasks;
02:
03: import java.io.File;
04: import java.io.IOException;
05: import java.util.ArrayList;
06:
07: import org.apache.tools.ant.BuildException;
08: import org.apache.tools.ant.DirectoryScanner;
09: import org.apache.tools.ant.Project;
10: import org.apache.tools.ant.Task;
11: import org.apache.tools.ant.taskdefs.ExecTask;
12: import org.apache.tools.ant.taskdefs.Replace;
13: import org.apache.tools.ant.types.Commandline;
14: import org.apache.tools.ant.types.FileSet;
15:
16: /**
17: * @deprecated Unused. This class only exists such that old buildfiles can still work.
18: *
19: * @author Klaas Waslander
20: * @version Nov 3, 2003 6:11:24 PM
21: */
22: public final class Soffice2Html extends Task {
23:
24: public Soffice2Html() {
25: }
26:
27: public void setCommand(String command) {
28: }
29:
30: public void addFileset(FileSet set) {
31: }
32:
33: public void execute() throws BuildException {
34: throw new BuildException(
35: getClass().getName()
36: + " is deprecated: it does not work and is no longer supported");
37: }
38: }
|