9e0bafe2b8932a39217044d34be305cfb48cccf0
[org.ibex.mail.git] / src / org / ibex / mail / MailboxTree.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 org.ibex.mail.*;
7 import org.ibex.util.*;
8 import org.ibex.mail.*;
9 import org.ibex.js.*;
10 import java.io.*;
11 import java.net.*;
12 import java.util.*;
13 import java.text.*;
14
15 /** a node on the "mailbox tree" */
16 public abstract class MailboxTree extends JS.Obj {
17     public abstract MailboxTree  slash(String name, boolean create);
18     public abstract String[]     children();
19     public          Mailbox      getMailbox() { return null; }
20 }