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 interface LuceneAnalyzerFactory
10 {
11 //~ Methods --------------------------------------------------------------------------------------------------------
12
13 public Analyzer createIndexingAnalyzer();
14 public Analyzer createAnalyzer();
15 }