FileDocCategorySizeDatePackage
Header.javaAPI DocApache Ant 1.701626Wed Dec 13 06:16:20 GMT 2006org.apache.tools.ant.taskdefs.email

Header

public class Header extends Object
Class representing a generic e-mail header.
since
Ant 1.7

Fields Summary
private String
name
private String
value
Constructors Summary
Methods Summary
public java.lang.StringgetName()
Get the name of this Header.

return
name as String.

        return name;
    
public java.lang.StringgetValue()
Get the value of this Header.

return
value as String.

        return value;
    
public voidsetName(java.lang.String name)
Set the name of this Header.

param
name the name to set.

        this.name = name;
    
public voidsetValue(java.lang.String value)
Set the value of this Header.

param
value the value to set.

        this.value = value;