Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.displaytag.tld
Class TldTest.TagAttribute  view TldTest.TagAttribute download TldTest.TagAttribute.java

java.lang.Object
  extended byorg.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 $)

Field Summary
private  java.lang.String attributeName
          Attribute name.
private  java.lang.String attributeType
          Atttribute type (can be null).
private  java.lang.String tagClass
          Tag class.
 
Constructor Summary
TldTest.TagAttribute()
           
 
Method Summary
 java.lang.String getAttributeName()
           
 java.lang.String getAttributeType()
           
 java.lang.String getTagClass()
           
 void setAttributeName(java.lang.String name)
           
 void setAttributeType(java.lang.String type)
           
 void setTagClass(java.lang.String tagClassName)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

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).

Constructor Detail

TldTest.TagAttribute

public TldTest.TagAttribute()
Method Detail

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()).