Methods Summary |
---|
public java.lang.Object | clone()Copies the current instance.
InformationField retval = new InformationField();
retval.information = this.information;
return retval;
|
public java.lang.String | encode()Gets the string encoded version of this object.
return INFORMATION_FIELD + information + Separators.NEWLINE;
|
public java.lang.String | getInformation()Gets the information field.
return information;
|
public java.lang.String | getValue()Returns the information value.
return information;
|
public void | setInformation(java.lang.String info)Sets the extra descriptive information.
information = info;
|
public void | setValue(java.lang.String value)Sets the value.
if (value == null)
throw new SdpException("The value is null");
else {
setInformation(value);
}
|