1 /*2 * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).3 * Initial Developer: H2 Group4 */5 package org.h2.index;6 7 /**8 * @author Thomas9 */10 class BtreePosition {11 int position;12 BtreePage page;13 BtreePosition next;14 15 BtreePosition(BtreePage page, int position, BtreePosition next) {16 this.page = page;17 this.position = position;18 this.next = next;19 }20 }21