* specified component is not an HtmlInput.
*/
public void setValue(String componentID, String value)
{
Element input = getElement(componentID);
if (input == null) throw new ComponentIDNotFoundException(componentID);
if (input instanceof HtmlInput)
{
((HtmlInput)input).setValueAttribute(value);
return;