X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fibex%2Fmail%2FTarget.java;h=952a46f611dd41b646a1d4119097aff9bc4635b9;hb=7c1678b4d591e1dabc4e14e7d6231f810003211d;hp=0fea645048bce6cea15890e4a1cbfa838453867c;hpb=4a84e96e64310fdfd9d24c691d12586b758a31de;p=org.ibex.mail.git diff --git a/src/org/ibex/mail/Target.java b/src/org/ibex/mail/Target.java index 0fea645..952a46f 100644 --- a/src/org/ibex/mail/Target.java +++ b/src/org/ibex/mail/Target.java @@ -1,9 +1,14 @@ +// Copyright 2000-2005 the Contributors, as shown in the revision logs. +// Licensed under the Apache Public Source License 2.0 ("the License"). +// You may not use this file except in compliance with the License. + package org.ibex.mail; import java.io.*; import org.ibex.js.*; +import org.ibex.mail.target.*; /** base class for mail message "destinations" */ -public class Target { - public static final Target root = Script.root; - public void accept(Message m) throws IOException, MailException { /* FIXME */ } +public interface Target { + public static final Target root = Script.root(); + public abstract void accept(Message m) throws IOException, MailException; }