* Sets the rows property.
*
* @param rows the rows attribute value
*/
public void jsxSet_rows(final String rows) {
final HtmlFrameSet htmlFrameSet = (HtmlFrameSet) getDomNodeOrNull();
if (htmlFrameSet != null) {
htmlFrameSet.setAttribute("rows", rows);
}
}