FileDocCategorySizeDatePackage
ParamParent.javaAPI DocExample359Thu Jun 28 16:14:16 BST 2001com.ora.jsp.tags.generic

ParamParent.java

package com.ora.jsp.tags.generic;

/**
 * This interface must be implemented by all tag handlers that can
 * have ParamTag's in the body.
 */
public interface ParamParent {
    /**
     * Adds a parameter name-value pair represented by the
     * embedded ParamTag. The value is URL encoded.
     */
    void setParam(String name, String value);
}