• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package javax.sip.header;
2 
3 import java.text.ParseException;
4 
5 public interface ToHeader extends HeaderAddress, Header, Parameters {
6     String NAME = "To";
7 
getTag()8     String getTag();
setTag(String tag)9     void setTag(String tag) throws ParseException;
hasTag()10     boolean hasTag();
removeTag()11     void removeTag();
12 
getDisplayName()13     String getDisplayName();
getUserAtHostPort()14     String getUserAtHostPort();
15 }
16