package org.apache.struts.taglib.html;

import javax.servlet.jsp.JspException;

public class Value extends BaseAttributeTag {

  public Value() {
  }

  public int doAfterBody() throws JspException {
    if ( bodyContent.getString() != null ) {
        getRuntimeConfigurableTag().setValue( bodyContent.getString().trim() );
    }
    return EVAL_PAGE;
  }
}