You can use the Source Editor to
edit a tag library descriptor (TLD) file.
To edit a TLD using the Source Editor:
In the Projects window or Files window, double-click the TLD file's node.
The TLD file opens in the Source Editor.
In the Source Editor, edit the tag library discriptor by using the following main elements:
<short-name> Specifies a simple name that can be used by JSP page
authoring tools to suggest a namespace prefix for using the tag library in
a JSP page. The default is the .tld filename, without the .tld
extension.
<display-name> Specifies a short name intended for display by tools.
It does not need to be unique.
<tlib-version> Specifies the version of the tag library being
created. The default is 1.0.
<uri> Specifies a public URI that uniquely identifies this version
of the tag library. JSP files that use this tag library must use this
value for the uri attribute in the taglib directive, unless there
exists a jsp-config element in the web.xml file that maps a
different URI to the tag library.
<icon> Specifies the name of a file containing a small (16 x
16) icon image for use by tools. The file name is a relative path within the
tag library.
<description> Specifies descriptive information about the tag library.
<version> This is an attribute of the <taglib> element.
It specifies the JSP version that the tag library requires.
The default for J2SEE 1.3 is 1.2 and for J2SEE 1.4 is 2.0.
For general information about tag libraries, see JavaServer Pages Specification
available at