/** Returns a true if all the rows of the GridModel have not been iterated through.
* @return a true if all the rows of the GridModel have not been iterated through.
*/
public boolean theBodyShouldBeEvaluatedAgain() throws JspException {
if (m_modelIterator != null && m_modelIterator.hasNext() ) {
m_currentRow = (GridModelRow) m_modelIterator.next();
setRowContext();
return true;
} else {
return false;
}
}
GridTag.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:jaffa-framework
作者:
评论列表
文章目录