KickJava   Java API By Example, From Geeks To Geeks.

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


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