Package org.openhab.binding.astro.internal.util

Examples of org.openhab.binding.astro.internal.util.ItemIterator


  /**
   * Iterates through all items and publishes the states.
   */
  public void publish(final PlanetName planetName) {
    final Planet planet = context.getPlanet(planetName);
    new ItemIterator().iterate(new ItemIteratorCallback() {

      @Override
      public void next(AstroBindingConfig bindingConfig, Item item) {
        if (planetName == bindingConfig.getPlanetName()) {
          try {
View Full Code Here

TOP

Related Classes of org.openhab.binding.astro.internal.util.ItemIterator

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.