Package nl.topicus.onderwijs.dashboard.datatypes

Examples of nl.topicus.onderwijs.dashboard.datatypes.DotColor


  private void retrieveDataFromApplication(Map<String, DotColor> ret) {
    for (Project curProject : WicketApplication.get().getProjects()) {
      ProjectAlerts alerts = WicketApplication.get().getRepository()
          .getData(ProjectAlerts.class).get(curProject);
      DotColor max = null;
      for (Alert curAlert : alerts.getValue()) {
        if (DotColor.RED.equals(curAlert.getColor())) {
          max = DotColor.RED;
          break;
        } else if (DotColor.YELLOW.equals(curAlert.getColor()))
View Full Code Here

TOP

Related Classes of nl.topicus.onderwijs.dashboard.datatypes.DotColor

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.