KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > cjdbc > console > views > CacheStatsViewer


1 /**
2  * C-JDBC: Clustered JDBC.
3  * Copyright (C) 2002-2004 French National Institute For Research In Computer
4  * Science And Control (INRIA).
5  * Contact: c-jdbc@objectweb.org
6  *
7  * This library is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as published by the
9  * Free Software Foundation; either version 2.1 of the License, or any later
10  * version.
11  *
12  * This library is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
15  * for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with this library; if not, write to the Free Software Foundation,
19  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
20  *
21  * Initial developer(s): Emmanuel Cecchet.
22  * Contributor(s): Mathieu Peltier.
23  */

24
25 package org.objectweb.cjdbc.console.views;
26
27 import org.objectweb.cjdbc.common.i18n.Translate;
28
29 /**
30  * Graphical statistics viewer. Quick and dirty implementation.
31  *
32  * @author <a HREF="mailto:Mathieu.Peltier@inrialpes.fr">Mathieu Peltier</a>
33  * @author <a HREF="mailto:Emmanuel.Cecchet@inria.fr">Emmanuel Cecchet</a>
34  * @version 1.0
35  */

36 public class CacheStatsViewer extends InfoViewer
37 {
38
39   /**
40    * Create a CacheStatsViewer
41    *
42    * @param data Stats to display in the table
43    */

44   public CacheStatsViewer(Object JavaDoc[][] data)
45   {
46     super(data);
47   }
48
49   protected Object JavaDoc[][] getDataTypes(Object JavaDoc[][] stats)
50   {
51     int iSize = stats.length;
52     Object JavaDoc[][] ret = new Object JavaDoc[iSize][];
53     for (int i = 0; i < iSize; i++)
54     {
55       String JavaDoc[] aStat = (String JavaDoc[]) stats[i];
56       int jSize = aStat.length;
57       ret[i] = new Object JavaDoc[jSize];
58       ret[i][0] = aStat[0];
59       for (int j = 1; j < jSize; j++)
60       {
61         if (j == 10)
62           ret[i][j] = new Float JavaDoc(aStat[j]);
63         else
64           ret[i][j] = new Integer JavaDoc(aStat[j]);
65       }
66     }
67     return ret;
68   }
69
70   /**
71    * @see InfoViewer#getColumnNames()
72    */

73   public String JavaDoc[] getColumnNames()
74   {
75     String JavaDoc[] columnNames = new String JavaDoc[12];
76     columnNames[0] = Translate.get("console.infoviewer.cachestats.column.0");
77     columnNames[1] = Translate.get("console.infoviewer.cachestats.column.1");
78     columnNames[2] = Translate.get("console.infoviewer.cachestats.column.2");
79     columnNames[3] = Translate.get("console.infoviewer.cachestats.column.3");
80     columnNames[4] = Translate.get("console.infoviewer.cachestats.column.4");
81     columnNames[5] = Translate.get("console.infoviewer.cachestats.column.5");
82     columnNames[6] = Translate.get("console.infoviewer.cachestats.column.6");
83     columnNames[7] = Translate.get("console.infoviewer.cachestats.column.7");
84     columnNames[8] = Translate.get("console.infoviewer.cachestats.column.8");
85     columnNames[9] = Translate.get("console.infoviewer.cachestats.column.9");
86     columnNames[10] = Translate.get("console.infoviewer.cachestats.column.10");
87     columnNames[11] = Translate.get("console.infoviewer.cachestats.column.11");
88     return columnNames;
89   }
90
91   /**
92    * @see InfoViewer#setLabels()
93    */

94   public void setLabels()
95   {
96     frameTitle = Translate.get("console.infoviewer.cachestats.frame.title");
97     infoViewerMenuBarString = Translate
98         .get("console.infoviewer.cachestats.menubar");
99     actionToolTipText = Translate
100         .get("console.infoviewer.cachestats.action.tooltiptext");
101     actionErrorMessage = Translate
102         .get("console.infoviewer.cachestats.action.error.message");
103     actionSuccessMessage = Translate
104         .get("console.infoviewer.cachestats.action.success.message");
105     tableHeaderToolTipText = Translate
106         .get("console.infoviewer.table.tooltip.text");
107   }
108
109   /**
110    * @see org.objectweb.cjdbc.console.views.InfoViewer#getTraceableColumns()
111    */

112   public int[] getTraceableColumns()
113   {
114     return new int[]{0, 1, 10,11};
115   }
116
117 }
118
Popular Tags