01: /*
02: * EMail.java
03: *
04: * Created on December 18, 2001, 4:56 PM
05: */
06:
07: package javax.sdp;
08:
09: /** An EMail represents an e= field contained within a SessionDescription.
10: *
11: * Please refer to IETF RFC 2327 for a description of SDP.
12: *
13: * @author deruelle
14: * @version 1.0
15: */
16: public interface EMail extends Field {
17:
18: /** Returns the value.
19: */
20: public String getValue() throws SdpParseException;
21:
22: /** Set the value.
23: */
24: public void setValue(String value) throws SdpException;
25:
26: }
|