Methods Summary |
---|
public java.lang.Object | clone()Copies the current instance.
URIField retval = new URIField();
retval.urlString = this.urlString;
return retval;
|
public java.lang.String | encode()Gets the string encoded version of this object.
if (urlString != null) {
return URI_FIELD + urlString + Separators.NEWLINE;
} else return "";
|
public java.lang.String | get()Gets the URL field contents.
return urlString;
|
public java.lang.String | getURI()Gets the URL field contents.
return urlString;
|
public void | setURI(java.lang.String uri)Sets the URL string contents.
this.urlString = uri;
|