KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > datadictionarysystem > _FullTextIndexCharacteristics


1 package com.daffodilwoods.daffodildb.server.datadictionarysystem;
2
3 import com.daffodilwoods.daffodildb.server.datasystem.indexsystem._FullTextIndexInformation;
4 import com.daffodilwoods.database.resource.*;
5
6 public interface _FullTextIndexCharacteristics {
7    public _FullTextIndexInformation[] getFullTextIndexInformations() throws DException;
8
9    public _FullTextIndexInformation getFullTextIndexInformations(String JavaDoc indexName, boolean isNonUnique) throws DException;
10
11    public void refresh() throws DException;
12 }
13
Popular Tags