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