print out tokens in IMAP
[org.ibex.mail.git] / src / org / ibex / mail / Target.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.mail;
6 import java.io.*;
7 import org.ibex.js.*;
8 import org.ibex.mail.target.*;
9
10 /** base class for mail message "destinations" */
11 public interface Target {
12     public static final Target root = Script.root();
13     public abstract void accept(Message m) throws IOException, MailException;
14 }