Package org.onebusaway.transit_data.model.oba

Examples of org.onebusaway.transit_data.model.oba.LocalSearchResult


    public boolean isEnabled(TimedLocalSearchResult element) {

      if (_activeCategories.isEmpty())
        return true;

      LocalSearchResult result = element.getLocalSearchResult();

      for (String category : _activeCategories) {
        if (result.getCategories().contains(category))
          return true;
      }

      return false;
    }
View Full Code Here

TOP

Related Classes of org.onebusaway.transit_data.model.oba.LocalSearchResult

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.