• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package javax.sip.header;
2 
3 import java.text.ParseException;
4 
5 public interface ExtensionHeader extends Header {
getValue()6     String getValue();
setValue(String value)7     void setValue(String value) throws ParseException;
8 }
9