Methods Summary |
---|
public java.lang.String | getTagLibLocation()Describes the location of the tag library file.
if (this.location == null) {
this.location = "";
}
return this.location;
|
public java.lang.String | getTagLibURI()Return the URI of this tag lib.
if (this.uri == null) {
this.uri = "";
}
return this.uri;
|
public void | print(java.lang.StringBuffer toStringBuffer)Return a formatted String representing my state.
toStringBuffer.append("TGLIB: ").append(uri).append(", ").append(location);
|
public void | setTagLibLocation(java.lang.String location)Describe the location of the tag library file.
this.location = location;
|
public void | setTagLibURI(java.lang.String uri)Sets the URI of this tag lib.
this.uri = uri;
|