Main Page | Packages | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | Related Pages

SQLStatViewer.java

00001 /**
00002  * C-JDBC: Clustered JDBC.
00003  * Copyright (C) 2002-2004 French National Institute For Research In Computer
00004  * Science And Control (INRIA).
00005  * Contact: c-jdbc@objectweb.org
00006  * 
00007  * This library is free software; you can redistribute it and/or modify it
00008  * under the terms of the GNU Lesser General Public License as published by the
00009  * Free Software Foundation; either version 2.1 of the License, or any later
00010  * version.
00011  * 
00012  * This library is distributed in the hope that it will be useful, but WITHOUT
00013  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00014  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
00015  * for more details.
00016  * 
00017  * You should have received a copy of the GNU Lesser General Public License
00018  * along with this library; if not, write to the Free Software Foundation,
00019  * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
00020  *
00021  * Initial developer(s): Emmanuel Cecchet.
00022  * Contributor(s): Mathieu Peltier.
00023  */
00024 
00025 package org.objectweb.cjdbc.console.views;
00026 
00027 import org.objectweb.cjdbc.common.i18n.Translate;
00028 
00029 /**
00030  * Graphical SQL statistics viewer. Quick and dirty implementation.
00031  * 
00032  * @author <a href="mailto:Mathieu.Peltier@inrialpes.fr">Mathieu Peltier</a>
00033  * @author <a href="mailto:Emmanuel.Cecchet@inria.fr">Emmanuel Cecchet</a>
00034  * @version 1.0
00035  */
00036 public class SQLStatViewer extends InfoViewer
00037 {
00038   static final int COLUMNS = 9;
00039 
00040   /**
00041    * Create a SQLStatsViewer
00042    * 
00043    * @param stats Stats to display in the table
00044    */
00045   public SQLStatViewer(Object[][] stats)
00046   {
00047     super(stats);
00048   }
00049 
00050   protected Object[][] getDataTypes(Object[][] stats)
00051   {
00052     int iSize = stats.length;
00053     Object[][] ret = new Object[iSize][];
00054     for (int i = 0; i < iSize; i++)
00055     {
00056       String[] aStat = (String[]) stats[i];
00057       int jSize = aStat.length;
00058       ret[i] = new Object[jSize];
00059       ret[i][0] = aStat[0];
00060       for (int j = 1; j < jSize; j++)
00061       {
00062         if (j == 1)
00063           ret[i][j] = new String(aStat[j]);
00064         else
00065           ret[i][j] = new Float(aStat[j]);
00066       }
00067     }
00068     return ret;
00069   }
00070 
00071   /**
00072    * @see InfoViewer#getColumnNames()
00073    */
00074   public String[] getColumnNames()
00075   {
00076     String[] columnNames = new String[COLUMNS];
00077     columnNames[0] = Translate.get("console.infoviewer.stats.column.0");
00078     columnNames[1] = Translate.get("console.infoviewer.stats.column.1");
00079     columnNames[2] = Translate.get("console.infoviewer.stats.column.2");
00080     columnNames[3] = Translate.get("console.infoviewer.stats.column.3");
00081     columnNames[4] = Translate.get("console.infoviewer.stats.column.4");
00082     columnNames[5] = Translate.get("console.infoviewer.stats.column.5");
00083     columnNames[6] = Translate.get("console.infoviewer.stats.column.6");
00084     columnNames[7] = Translate.get("console.infoviewer.stats.column.7");
00085     columnNames[8] = Translate.get("console.infoviewer.stats.column.8");
00086     return columnNames;
00087   }
00088 
00089   /**
00090    * @see InfoViewer#setLabels()
00091    */
00092   public void setLabels()
00093   {
00094     frameTitle = Translate.get("console.infoviewer.stats.frame.title");
00095     infoViewerMenuBarString = Translate.get("console.infoviewer.stats.menubar");
00096     actionToolTipText = Translate
00097         .get("console.infoviewer.stats.action.tooltiptext");
00098     actionErrorMessage = Translate
00099         .get("console.infoviewer.stats.action.error.message");
00100     actionSuccessMessage = Translate
00101         .get("console.infoviewer.stats.action.success.message");
00102     tableHeaderToolTipText = Translate
00103         .get("console.infoviewer.table.tooltip.text");
00104   }
00105 
00106 }

Generated on Mon Apr 11 22:01:35 2005 for C-JDBC by  doxygen 1.3.9.1