it compiles!
[org.ibex.mail.git] / src / org / ibex / mail / target / Target.java
index 4b16725..ba69c00 100644 (file)
@@ -1,7 +1,10 @@
 package org.ibex.mail.target;
+import org.ibex.mail.*;
+import java.io.*;
+import org.ibex.js.*;
 
 /** base class for mail message "destinations" */
 public class Target {
-    public static final Target default = Script.root;
-    public void accept(Message m) { /* FIXME */ }
+    public static final Target root = Script.root;
+    public void accept(Message m) throws IOException { /* FIXME */ }
 }