KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jofti > core > IQueryEngine


1 /*
2  * Created on 26-Apr-2005
3  *
4  */

5 package com.jofti.core;
6
7 import java.util.Map JavaDoc;
8
9 import com.jofti.api.IndexQuery;
10 import com.jofti.exception.JoftiException;
11
12 /**
13  *
14  *
15  * The engine interface that runs the Query against a specific index instance.<p>
16  *
17  * @author Steve Woodcock (steve@jofti.com)
18  * @version 1.0
19  */

20 public interface IQueryEngine {
21
22     public Map JavaDoc query(IndexQuery query, InternalIndex index) throws JoftiException;
23 }
24
Popular Tags