Package com.browseengine.bobo.facets.FacetHandler

Examples of com.browseengine.bobo.facets.FacetHandler.FacetDataNone


    @Override                                                                                                                  
    public DocComparator getComparator(IndexReader reader, int docbase)                                                        
    throws IOException {                                                                                                     
      if (!(reader instanceof BoboIndexReader)) throw new IllegalStateException("reader not instance of "+BoboIndexReader.class);
      BoboIndexReader boboReader = (BoboIndexReader)reader;                                                                     
      final FacetDataNone dataCache = _facetHandler.getFacetData((BoboIndexReader) reader);                                                
      return new DocComparator() {                                                                                              

        @Override                                                                                                                
        public Comparable value(ScoreDoc doc) {
          return 1;                                                                                  
View Full Code Here

TOP

Related Classes of com.browseengine.bobo.facets.FacetHandler.FacetDataNone

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.