KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > displaytag > decorator > TableDecoratorTwo


1 package org.displaytag.decorator;
2
3 /**
4  * Test decorator used in tests.
5  * @author Fabrizio Giustina
6  * @version $Revision: 907 $ ($Author: fgiust $)
7  */

8 class TableDecoratorTwo extends TableDecorator
9 {
10
11     /**
12      * getter property for "two".
13      * @return "two"
14      */

15     public String JavaDoc getTwo()
16     {
17         return "two";
18     }
19 }
Popular Tags