1 11 package org.eclipse.help.internal.search; 12 13 import org.eclipse.help.internal.toc.*; 14 15 public class SearchIndexWithIndexingProgress extends SearchIndex { 16 private ProgressDistributor progressDistributor; 17 22 public SearchIndexWithIndexingProgress(String locale, 23 AnalyzerDescriptor analyzerDesc, TocManager tocManager) { 24 super(locale, analyzerDesc, tocManager); 25 progressDistributor = new ProgressDistributor(); 26 } 27 30 public ProgressDistributor getProgressDistributor() { 31 return progressDistributor; 32 } 33 } 34 | Popular Tags |