Package hu.lacimol.tutorial.todo.util

Examples of hu.lacimol.tutorial.todo.util.GlobalSettings


  public TodoMonitorImpl(PluginScheduler pluginScheduler, TodoService todoService,
      PluginSettingsFactory pluginSettingsFactory) {
   
    this.pluginScheduler = pluginScheduler;
    this.todoService = todoService;
    this.settings = new GlobalSettings(pluginSettingsFactory.createGlobalSettings());
   
    Long loadInterval = this.settings.loadInterval();
    if (loadInterval != null) {
      this.interval = loadInterval;
    }
View Full Code Here

TOP

Related Classes of hu.lacimol.tutorial.todo.util.GlobalSettings

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.