KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jofti > store > Counter


1 /*
2  * Created on 19-Feb-2006
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package com.jofti.store;
8
9 /**
10  * @author xenephon
11  *
12  * TODO To change the template for this generated type comment go to
13  * Window - Preferences - Java - Code Style - Code Templates
14  */

15 public class Counter {
16
17     /**
18      *
19      */

20     static public int misses=0;
21     static public int hits =0;
22     
23     static public int retrieves=0;
24     static public int stores=0;
25     static public int NoOpstores=0;
26     static public int storeCommands;
27     
28     static public int retrieveCommands;
29     static public int removeCommands;
30     static public int allocateRecords;
31     static public int allocationMods;
32     
33     static public int managerReads;
34     static public int readConversions;
35     static public int nodes;
36     static public int splits;
37     
38     static public int memMan;
39     
40     static public int pendingWritePuts;
41     static public int pendingReads;
42     
43     static public int removes;
44     
45     
46     static public int occupied;
47     public Counter() {
48         super();
49         // TODO Auto-generated constructor stub
50
}
51
52 }
53
Popular Tags