blob: 5e50ef5f8e0c0f3067d65dba1a3e5a5bf4df0292 [file] [log] [blame]
package com.google.gwt.reference.microbenchmark.client;
import com.google.gwt.dom.client.TableSectionElement;
/**
* Implementation of {@link Util}.
*/
class UtilImpl {
void replaceTableBodyRows(TableSectionElement tbody, String rowHtml) {
tbody.setInnerHTML(rowHtml);
}
}