FileDocCategorySizeDatePackage
TagLibConfigurationDescriptor.javaAPI DocGlassfish v2 API3711Fri May 04 22:31:24 BST 2007com.sun.enterprise.deployment

TagLibConfigurationDescriptor

public class TagLibConfigurationDescriptor extends Object implements Serializable
This descriptor represent the information about a tag library used in a web application.
author
Danny Coward

Fields Summary
private String
uri
private String
location
Constructors Summary
public TagLibConfigurationDescriptor()
Default constructor.

    
public TagLibConfigurationDescriptor(String uri, String location)
Construct a tag library configuration with the given location and URI.

param
the URI.
param
the location.

	this.uri = uri;
	this.location = location;
    
Methods Summary
public java.lang.StringgetTagLibLocation()
Describes the location of the tag library file.

return
the location of the tag library.

	if (this.location == null) {
	    this.location = "";
	}
	return this.location;
    
public java.lang.StringgetTagLibURI()
Return the URI of this tag lib.

return
the URI of the tag library.

	if (this.uri == null) {
	    this.uri = "";
	}
	return this.uri;
    
public voidprint(java.lang.StringBuffer toStringBuffer)
Return a formatted String representing my state.

	toStringBuffer.append("TGLIB: ").append(uri).append(", ").append(location);
    
public voidsetTagLibLocation(java.lang.String location)
Describe the location of the tag library file.

param
the location of the tag library.

        this.location = location;
    
public voidsetTagLibURI(java.lang.String uri)
Sets the URI of this tag lib.

param
the URI of the tag library.

        this.uri = uri;