KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > SecondaryMultiKeyCreator


1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002,2006 Oracle. All rights reserved.
5  *
6  * $Id: SecondaryMultiKeyCreator.java,v 1.4 2006/10/30 21:14:12 bostic Exp $
7  */

8
9 package com.sleepycat.je;
10
11 import java.util.Set JavaDoc;
12
13 /**
14  * Javadoc for this public method is generated via
15  * the doc templates in the doc_src directory.
16  */

17 public interface SecondaryMultiKeyCreator {
18
19     /**
20      * Javadoc for this public method is generated via
21      * the doc templates in the doc_src directory.
22      */

23     public void createSecondaryKeys(SecondaryDatabase secondary,
24                     DatabaseEntry key,
25                     DatabaseEntry data,
26                     Set JavaDoc results)
27     throws DatabaseException;
28 }
29
Popular Tags