java.lang.Object
org.displaytag.tld.TldTest.TagAttribute
- Enclosing class:
- TldTest
- public static class TldTest.TagAttribute
- extends java.lang.Object
Javabean representing a tag attribute.
- Version:
- $Revision: 833 $ ($Author: fgiust $)
tagClass
private java.lang.String tagClass
- Tag class.
attributeName
private java.lang.String attributeName
- Attribute name.
attributeType
private java.lang.String attributeType
- Atttribute type (can be null).
TldTest.TagAttribute
public TldTest.TagAttribute()
getAttributeName
public java.lang.String getAttributeName()
setAttributeName
public void setAttributeName(java.lang.String name)
getAttributeType
public java.lang.String getAttributeType()
setAttributeType
public void setAttributeType(java.lang.String type)
getTagClass
public java.lang.String getTagClass()
setTagClass
public void setTagClass(java.lang.String tagClassName)
toString
public java.lang.String toString()
- Description copied from class:
java.lang.Object
- Convert this Object to a human-readable String.
There are no limits placed on how long this String
should be or what it should contain. We suggest you
make it as intuitive as possible to be able to place
it into System.out.println() 55
and such.
It is typical, but not required, to ensure that this method
never completes abruptly with a java.lang.RuntimeException.
This method will be called when performing string
concatenation with this object. If the result is
null, string concatenation will instead
use "null".
The default implementation returns
getClass().getName() + "@" +
Integer.toHexString(hashCode()).