Examples of ConfigurationHandler


Examples of org.openhab.binding.tinkerforge.internal.config.ConfigurationHandler

      String refreshIntervalString = (String) config.get("refresh");
      if (StringUtils.isNotBlank(refreshIntervalString)) {
        refreshInterval = Long.parseLong(refreshIntervalString);
      }

      ConfigurationHandler configurationHandler = new ConfigurationHandler();
      ohConfig = configurationHandler.createConfig(config);

      // read further config parameters here ...
      logger.debug("{} updated called", LoggerConstants.CONFIG);
      // must be done after all other config has been processed
      String cfgHostsLine = (String) config.get(CONFIG_KEY_HOSTS);
View Full Code Here

Examples of tvbrowser.extras.common.ConfigurationHandler

  private ArrayList<Program> mHistory = new ArrayList<Program>();
  private int mHistoryIndex = 0;

  private ProgramInfo() {
    mInstance = this;
    mConfigurationHandler = new ConfigurationHandler(DATAFILE_PREFIX);
    loadSettings();
    LookAndFeelAddons.setTrackingLookAndFeelChanges(true);
  }
View Full Code Here

Examples of tvbrowser.extras.common.ConfigurationHandler

  private int mMarkPriority = -2;

  private ReminderPlugin() {
    mInstance = this;
    mClientPluginTargets = new ProgramReceiveTarget[0];
    mConfigurationHandler = new ConfigurationHandler(getReminderPluginId());
    loadSettings();
    mReminderList = new ReminderList();
    mReminderList.setReminderTimerListener(new ReminderTimerListener(mSettings, mReminderList));
    loadReminderData();
View Full Code Here

Examples of tvbrowser.extras.common.ConfigurationHandler

  private FavoritesPlugin() {
    mInstance = this;
    mExclusions = new Exclusion[0];
    mPendingFavorites = new ArrayList<AdvancedFavorite>(0);
    mClientPluginTargets = new ProgramReceiveTarget[0];
    mConfigurationHandler = new ConfigurationHandler(DATAFILE_PREFIX);
    load();

    TvDataBase.getInstance().addTvDataListener(new TvDataBaseListener() {
      public void dayProgramTouched(final ChannelDayProgram removedDayProgram,
          final ChannelDayProgram addedDayProgram) {
View Full Code Here

Examples of tvbrowser.extras.common.ConfigurationHandler

  /**
   * Creates a new instance of SearchPlugin.
   */
  private SearchPlugin() {
    mInstance = this;
    mConfigurationHandler = new ConfigurationHandler(DATAFILE_PREFIX);
    load();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.