Package javax.servlet.jsp.jstl.core

Examples of javax.servlet.jsp.jstl.core.LoopTagSupport


  }
  public String findName(String prop) {
    if (indexed == null || !indexed.equals("true")) {
      return prop;
    }
    LoopTagSupport loopTag = (LoopTagSupport) TagSupport.findAncestorWithClass(this, LoopTagSupport.class);

    String result = "";
    result += name + "[" + loopTag.getLoopStatus().getIndex() + "]." + prop;
    return result;
  }
View Full Code Here

TOP

Related Classes of javax.servlet.jsp.jstl.core.LoopTagSupport

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.