--- ColumnDecorator.java.orig 2005-04-21 07:52:46.360024000 +0200 +++ ColumnDecorator.java 2005-04-21 07:53:33.427704000 +0200 @@ -11,6 +11,8 @@ */ package org.displaytag.decorator; +import javax.servlet.http.HttpServletRequest; + import org.displaytag.exception.DecoratorException; @@ -33,9 +35,10 @@ * Called after the object has been retrieved from the bean contained in the list. The decorate method is * responsible for transforming the object into a string to render in the page. * @param columnValue Object to decorate + * @param request TODO * @return String decorated object * @throws DecoratorException wrapper exception for any exception thrown during decoration */ - String decorate(Object columnValue) throws DecoratorException; + String decorate(Object columnValue, HttpServletRequest request) throws DecoratorException; }