KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > bridge > jsp > taglib > ParamHandler


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.bridge.jsp.taglib;
11
12 import javax.servlet.jsp.JspTagException JavaDoc;
13 /**
14  * ParamHandlers can have the <mm:param> tag as subtag
15  *
16  * @author Michiel Meeuwissen
17  * @since MMBase-1.7
18  * @see org.mmbase.bridge.jsp.taglib.pageflow.UrlTag
19  * @version $Id: ParamHandler.java,v 1.2 2003/09/01 13:29:43 pierre Exp $
20  */

21
22 public interface ParamHandler {
23     public void addParameter(String JavaDoc key, Object JavaDoc value) throws JspTagException JavaDoc;
24 }
25
Popular Tags