package org.apache.struts.taglib.html;

/**
 * This interface is to be implemented by all input tags that need to be 
 * configured at runtime. 
 * @author Nick Pellow
 */

public interface RuntimeConfigurableTag {

  public void setProperty(String property);
  public void setValue(String value);

}