/** This generates the HTML for the tag.
* @param out The JspWriter object.
* @param bodyContent The BodyContent object.
* @throws IOException if any I/O error occurs.
*/
public void writeTagBodyContent(JspWriter out, BodyContent bodyContent) throws IOException {
if (isFirstPass())
// Write the main table tag, the table column headings, and start the table body
out.println( getInitialHtml() );
// Write out the start and end of the rows.
out.println( getRowStartHtml() );
if (m_hasRows)
out.println( processRow());
out.println( getRowEndingHtml() );
// clear the body content for the next time through.
bodyContent.clearBody();
// Increment the RowNo
++m_rowNo;
//Reset the column counters
m_currColumnNo = 0;
m_currColName = null;
}
GridTag.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:jaffa-framework
作者:
评论列表
文章目录