1 /*- 2 * See the file LICENSE for redistribution information. 3 * 4 * Copyright (c) 2002,2006 Oracle. All rights reserved. 5 * 6 * $Id: TreeStats.java,v 1.12 2006/10/30 21:14:26 bostic Exp $ 7 */ 8 9 package com.sleepycat.je.tree; 10 11 /** 12 * A class that provides interesting stats about a particular tree. 13 */ 14 public final class TreeStats { 15 16 /** 17 * Number of times the root was split. 18 */ 19 public int nRootSplits = 0; 20 } 21