it compiles
[org.ibex.mail.git] / src / org / ibex / mail / Target.java
1 package org.ibex.mail;
2 import java.io.*;
3 import org.ibex.js.*;
4
5 /** base class for mail message "destinations" */
6 public class Target {
7     public static final Target root = Script.root();
8     public void accept(Message m) throws IOException, MailException { /* FIXME */ }
9 }