KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > persist > impl > KeyLocation


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

8
9 package com.sleepycat.persist.impl;
10
11 /**
12  * Holder for the input and format of a key. Used when copying secondary keys.
13  * Returned by RecordInput.getKeyLocation().
14  *
15  * @author Mark Hayes
16  */

17 class KeyLocation {
18
19     RecordInput input;
20     Format format;
21
22     KeyLocation(RecordInput input, Format format) {
23         this.input = input;
24         this.format = format;
25     }
26 }
27
Popular Tags