/*
  * (non-Javadoc)
  *
  * @see net.sf.jasperreports.jsf.taglib.AbstractReportTag#release()
  */
 @Override
 public void release() {
   super.release();
   layout = null;
   frameborder = null;
   marginheight = null;
   marginwidth = null;
   height = null;
   width = null;
 }
  /*
   * (non-Javadoc)
   *
   * @see
   * net.sf.jasperreports.jsf.taglib.AbstractReportTag#setProperties(javax
   * .faces.component.UIComponent)
   */
  @Override
  protected void setProperties(final UIComponent component) {
    super.setProperties(component);

    setIntegerAttribute(component, "frameborder", frameborder);
    setStringAttribute(component, "height", height);
    setStringAttribute(component, "layout", layout);
    setStringAttribute(component, "marginheight", marginheight);
    setStringAttribute(component, "marginwidth", marginwidth);
    setStringAttribute(component, "width", width);
  }