Update of /cvsroot/displaytag/display09/src/org/displaytag/decorator
In directory sc8-pr-cvs1:/tmp/cvs-serv30548/src/org/displaytag/decorator
Modified Files:
ColumnDecorator.java
Log Message:
ColumnDecorator is now an interface
Index: ColumnDecorator.java
===================================================================
RCS file:
/cvsroot/displaytag/display09/src/org/displaytag/decorator/ColumnDecorator.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ColumnDecorator.java 15 Jul 2003 21:49:24 -0000 1.2
--- ColumnDecorator.java 17 Jul 2003 21:19:57 -0000 1.3
***************
*** 4,12 ****
/**
! * <p>A simple "decorator" for column values</p>
* @author epesh
* @version $Revision$ ($Author$)
*/
! public abstract class ColumnDecorator
{
--- 4,14 ----
/**
! * <p>Interface for simple column decorators.</p>
! * <p>A column decorator is called after the object has been retrieved and it can
"transform" the object before the
! * rendering</p>
* @author epesh
* @version $Revision$ ($Author$)
*/
! public interface ColumnDecorator
{
***************
*** 15,21 ****
* @param pColumnValue Object to decorate
* @return String decorated object
! * @throws DecoratorException for exceptions
*/
! public abstract String decorate(Object pColumnValue) throws DecoratorException;
}
--- 17,23 ----
* @param pColumnValue Object to decorate
* @return String decorated object
! * @throws DecoratorException wrapper exception for any exception thrown
during decoration
*/
! String decorate(Object pColumnValue) throws DecoratorException;
}
-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
_______________________________________________
displaytag-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-devel