org.apache.tools.ant.taskdefs.email

Class EmailAddress


public class EmailAddress
extends java.lang.Object

Holds an email address.
Since:
Ant 1.5

Constructor Summary

EmailAddress()
Creates an empty email address
EmailAddress(String email)
Creates a new email address based on the given string

Method Summary

String
getAddress()
Returns the address
String
getName()
Returns the display name
void
setAddress(String address)
Sets the email address
void
setName(String name)
Sets the personal / display name of the address
String
toString()
Constructs a string "name <address>" or "address"

Constructor Details

EmailAddress

public EmailAddress()
Creates an empty email address

EmailAddress

public EmailAddress(String email)
Creates a new email address based on the given string
Parameters:
email - the email address (with or without <>) Acceptable forms include: address
name
name (name) address address (name)

Method Details

getAddress

public String getAddress()
Returns the address
Returns:
the address part

getName

public String getName()
Returns the display name
Returns:
the display name part

setAddress

public void setAddress(String address)
Sets the email address
Parameters:
address - the actual email address (without <>)

setName

public void setName(String name)
Sets the personal / display name of the address
Parameters:
name - the display name

toString

public String toString()
Constructs a string "name <address>" or "address"
Returns:
a string representation of the address

Copyright © 2000-2006 Apache Software Foundation. All Rights Reserved.