Package org.moxie

Examples of org.moxie.DocMenu


  }
 
  protected void preparePages(List<DocElement> elements) {
    for (DocElement element : elements) {
      if (element instanceof DocMenu) {
        DocMenu menu = (DocMenu) element;

        for (int i = 0, maxIndex = menu.elements.size() - 1; i <= maxIndex; i++) {
          DocElement subElement = menu.elements.get(i);
          if (subElement instanceof DocPage) {
            prepareTemplatePage((DocPage) subElement);
View Full Code Here

TOP

Related Classes of org.moxie.DocMenu

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.