Package dk.valtech.octools.navigation

Examples of dk.valtech.octools.navigation.TreeNavigationIterator


  public int doStartTag() throws JspException {
    CmsFlexController m_controller = CmsFlexController.getController(pageContext.getRequest());
    CmsObject cms = m_controller.getCmsObject();

        if (recursive == null || "tree".equalsIgnoreCase(recursive)) {
        navigationIterator = new TreeNavigationIterator(cms);
        } else if ("flat".equalsIgnoreCase(recursive)) {
          navigationIterator = new FlatRecursiveNavigationIterator(cms);
        } else {
          throw new UnsupportedOperationException("Only two valid arguments for recursive is tree|flat");
        }
View Full Code Here

TOP

Related Classes of dk.valtech.octools.navigation.TreeNavigationIterator

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.