1 /*
2 * Copyright (c) 2003 by Atlassian Software Systems Pty. Ltd.
3 * All rights reserved.
4 */
5 package com.atlassian.bonnie;
6
7 /**
8 * Indexes the data stored in an object for fast+flexible search querying.
9 * To search for an object that has been indexed, use Searcher.
10 * @see com.atlassian.bonnie.Searcher
11 *
12 * @author Armond Avanes (armond555@yahoo.com)
13 */
14 public interface Indexer
15 {
16 //~ Methods --------------------------------------------------------------------------------------------------------
17
18 public void index(Searchable obj);
19
20 public void unIndex(Searchable obj);
21
22 public void reIndex(Searchable obj);
23 }