1   /*
2    * Copyright (c) 2003 by Atlassian Software Systems Pty. Ltd.
3    * All rights reserved.
4    */
5   package com.atlassian.bonnie.analyzer;
6   
7   import org.apache.lucene.analysis.Analyzer;
8   
9   public class DefaultLuceneAnalyzerFactory implements LuceneAnalyzerFactory
10  {
11      //~ Methods --------------------------------------------------------------------------------------------------------
12  
13      public Analyzer createIndexingAnalyzer()
14      {
15          return new DefaultLuceneAnalyzer();
16      }
17  
18      public Analyzer createAnalyzer()
19      {
20          return new DefaultLuceneAnalyzer();
21      }
22  }