• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package javax.sip.header;
2 
3 import javax.sip.InvalidArgumentException;
4 
5 public interface TimeStampHeader extends Header {
6     String NAME = "Timestamp";
7 
getDelay()8     float getDelay();
setDelay(float delay)9     void setDelay(float delay) throws InvalidArgumentException;
hasDelay()10     boolean hasDelay();
removeDelay()11     void removeDelay();
12 
getTime()13     long getTime();
setTime(long timeStamp)14     void setTime(long timeStamp) throws InvalidArgumentException;
15 
getTimeDelay()16     int getTimeDelay();
setTimeDelay(int delay)17     void setTimeDelay(int delay) throws InvalidArgumentException;
18 
getTimeStamp()19     float getTimeStamp();
setTimeStamp(float timeStamp)20     void setTimeStamp(float timeStamp) throws InvalidArgumentException;
21 }
22