This class is intended to be used in the context of web presentation layer technologies such as JSP or Velocity.
9293949596979899100101102
public int doStartTag() throws JspException { super.doStartTag(); if (name != null) { RevisionBean revision = StrutsTagUtils.findRevision(this, pageContext); property = getProperty(revision, name, namespace); } return super.doStartTag();
257258259260261262263264265266267
*/ protected RevisionBean getRevision(NodeBean node, NodeRevisionNumber number, String branch) { RevisionBean bean = null; if (number != null) { bean = node.getRevision(number); } else if ((branch != null) && (branch.length() > 0)) { bean = node.getRevision(branch); } else {