Methods Summary |
---|
public boolean | equals(java.lang.Object otherHeader)Compares two from headers for equality.
if (otherHeader == null || address == null)
return false;
if (!otherHeader.getClass().equals(this.getClass())) {
return false;
}
return super.equals(otherHeader);
|
public java.lang.String | getTag()Gets the tag parameter from the address parm list.
return super.getParameter(FromHeader.TAG);
|
public boolean | hasTag()Returns true if the tag label is found.
return super.hasParameter(TAG);
|
public void | removeTag()Removes the Tag field.
super.removeParameter(TAG);
|
public void | setTag(java.lang.String tag)Sets the tag member.
super.setParameter(TAG, tag);
|