Methods Summary |
---|
public java.lang.Object | clone()Copies the current instance.
SessionNameField snf = new SessionNameField();
snf.sessionName = this.sessionName;
return snf;
|
public java.lang.String | encode()Gets the string encoded version of this object.
return SESSION_NAME_FIELD + sessionName + Separators.NEWLINE;
|
public java.lang.String | getSessionName()Gets the session name . return sessionName;
|
public java.lang.String | getValue()Returns the value.
return getSessionName();
|
public void | setSessionName(java.lang.String s)Sets the session name member .
sessionName = s;
|
public void | setValue(java.lang.String value)Sets the value.
if (value == null)
throw new SdpException("The value is null");
else {
setSessionName(value);
}
|