01: /*
02: * Field.java
03: *
04: * Created on December 18, 2001, 10:42 AM
05: */
06:
07: package javax.sdp;
08:
09: import java.io.*;
10:
11: /** A Field represents a single line of information within a SDP
12: * session description.
13: *
14: * @author deruelle
15: * @version 1.0
16: */
17: public interface Field extends Serializable, Cloneable {
18:
19: /** Returns the type character for the field.
20: * @return the type character for the field.
21: */
22: public char getTypeChar();
23:
24: /** Returns a clone of this field.
25: * @return a clone of this field.
26: */
27: public Object clone();
28:
29: }
|