01: /*-
02: * See the file LICENSE for redistribution information.
03: *
04: * Copyright (c) 2002,2008 Oracle. All rights reserved.
05: *
06: * $Id: KeyLocation.java,v 1.4.2.2 2008/01/07 15:14:19 cwl Exp $
07: */
08:
09: 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: }
|