Package nl.topicus.onderwijs.dashboard.datasources

Examples of nl.topicus.onderwijs.dashboard.datasources.LastServerCheckTime


  public DataSourceSeriesEntry<T> getLastEntry() {
    return data.isEmpty() ? null : data.getLast();
  }

  public void addEntry(DashboardRepository repository) {
    LastServerCheckTime time = repository
        .getData(LastServerCheckTime.class).get(key);
    Date timeValue = time == null ? null : time.getValue();
    if (timeValue == null)
      return;

    D source = repository.getData(dataSource).get(key);
    T value = source == null ? null : source.getValue();
View Full Code Here

TOP

Related Classes of nl.topicus.onderwijs.dashboard.datasources.LastServerCheckTime

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.