Class TagFileXml
- java.lang.Object
-
- org.apache.tomcat.util.descriptor.tld.TagFileXml
-
public class TagFileXml extends java.lang.ObjectBare-bone model of a tag file loaded from a TLD. This does not contain the tag-specific attributes that requiring parsing the actual tag file to derive.
-
-
Constructor Summary
Constructors Constructor Description TagFileXml()Constructs a new TagFileXml.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDisplayName()Returns the display name.java.lang.StringgetInfo()Returns the description info.java.lang.StringgetLargeIcon()Returns the large icon path.java.lang.StringgetName()Returns the tag name.java.lang.StringgetPath()Returns the tag file path.java.lang.StringgetSmallIcon()Returns the small icon path.voidsetDisplayName(java.lang.String displayName)Sets the display name.voidsetInfo(java.lang.String info)Sets the description info.voidsetLargeIcon(java.lang.String largeIcon)Sets the large icon path.voidsetName(java.lang.String name)Sets the tag name.voidsetPath(java.lang.String path)Sets the tag file path.voidsetSmallIcon(java.lang.String smallIcon)Sets the small icon path.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the tag name.- Returns:
- the tag name
-
setName
public void setName(java.lang.String name)
Sets the tag name.- Parameters:
name- the tag name
-
getPath
public java.lang.String getPath()
Returns the tag file path.- Returns:
- the path
-
setPath
public void setPath(java.lang.String path)
Sets the tag file path.- Parameters:
path- the path
-
getDisplayName
public java.lang.String getDisplayName()
Returns the display name.- Returns:
- the display name
-
setDisplayName
public void setDisplayName(java.lang.String displayName)
Sets the display name.- Parameters:
displayName- the display name
-
getSmallIcon
public java.lang.String getSmallIcon()
Returns the small icon path.- Returns:
- the small icon path
-
setSmallIcon
public void setSmallIcon(java.lang.String smallIcon)
Sets the small icon path.- Parameters:
smallIcon- the small icon path
-
getLargeIcon
public java.lang.String getLargeIcon()
Returns the large icon path.- Returns:
- the large icon path
-
setLargeIcon
public void setLargeIcon(java.lang.String largeIcon)
Sets the large icon path.- Parameters:
largeIcon- the large icon path
-
getInfo
public java.lang.String getInfo()
Returns the description info.- Returns:
- the info
-
setInfo
public void setInfo(java.lang.String info)
Sets the description info.- Parameters:
info- the info
-
-