01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (http://h2database.com/html/license.html).
04: * Initial Developer: H2 Group
05: */
06: package org.h2.index;
07:
08: /**
09: * Represents a position of a b-tree index.
10: */
11: class BtreePosition {
12: int position;
13: BtreePage page;
14: BtreePosition next;
15:
16: BtreePosition(BtreePage page, int position, BtreePosition next) {
17: this.page = page;
18: this.position = position;
19: this.next = next;
20: }
21: }
|