Package de.jollyday

Examples of de.jollyday.CalendarHierarchy


   *
   * @param c
   * @return configuration hierarchy
   */
  private static CalendarHierarchy createConfigurationHierarchy(final Configuration c, CalendarHierarchy h) {
    h = new CalendarHierarchy(h, c.getHierarchy());
    h.setFallbackDescription(c.getDescription());
    for (Configuration sub : c.getSubConfigurations()) {
      CalendarHierarchy subHierarchy = createConfigurationHierarchy(sub, h);
      h.getChildren().put(subHierarchy.getId(), subHierarchy);
    }
    return h;
  }
View Full Code Here

TOP

Related Classes of de.jollyday.CalendarHierarchy

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.