FileDocCategorySizeDatePackage
Address.javaAPI DocAndroid 1.5 API2073Wed May 06 22:42:46 BST 2009org.apache.james.mime4j.field.address

Address

public abstract class Address extends Object
The abstract base for classes that represent RFC2822 addresses. This includes groups and mailboxes. Currently, no public methods are introduced on this class.

Fields Summary
Constructors Summary
Methods Summary
final voidaddMailboxesTo(java.util.ArrayList results)
Adds any mailboxes represented by this address into the given ArrayList. Note that this method has default (package) access, so a doAddMailboxesTo method is needed to allow the behavior to be overridden by subclasses.

		doAddMailboxesTo(results);
	
protected abstract voiddoAddMailboxesTo(java.util.ArrayList results)
Adds any mailboxes represented by this address into the given ArrayList. Must be overridden by concrete subclasses.