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

GuiIcons.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): Nicolas Modrzyk
00022  * Contributor(s): ______________________.
00023  */
00024 
00025 package org.objectweb.cjdbc.console.gui.constants;
00026 
00027 import javax.swing.Icon;
00028 import javax.swing.ImageIcon;
00029 
00030 /**
00031  * This class defines a GuiIcons
00032  * 
00033  * @author <a href="mailto:Nicolas.Modrzyk@inria.fr">Nicolas Modrzyk </a>
00034  * @version 1.0
00035  */
00036 public abstract class GuiIcons
00037 {
00038   /** Backend Panel Icon */
00039   public static final Icon      BACKEND_PANEL_ICON             = new ImageIcon(
00040                                                                    GuiIcons.class
00041                                                                        .getResource("/Panel_Backend.gif"));
00042 
00043   /** Xml Panel Icon */
00044   public static final Icon      XML_PANEL_ICON                 = new ImageIcon(
00045                                                                    GuiIcons.class
00046                                                                        .getResource("/Panel_Xml.gif"));
00047 
00048   /** Debug panel Icon */
00049   public static final Icon      DEBUG_PANEL_ICON               = new ImageIcon(
00050                                                                    GuiIcons.class
00051                                                                        .getResource("/Panel_Debug.gif"));
00052 
00053   /** Backend Enabled Icon */
00054   public static final Icon      BACKEND_ENABLED_ICON           = new ImageIcon(
00055                                                                    GuiIcons.class
00056                                                                        .getResource("/Backend_Enabled.gif"));
00057 
00058   /** Backend Disabled Icon */
00059   public static final Icon      BACKEND_DISABLED_ICON          = new ImageIcon(
00060                                                                    GuiIcons.class
00061                                                                        .getResource("/Backend_Disabled.gif"));
00062 
00063   /** Backend BACKUP Icon */
00064   public static final Icon      BACKEND_BACKUP_ICON            = new ImageIcon(
00065                                                                    GuiIcons.class
00066                                                                        .getResource("/Backend_Backup.gif"));
00067 
00068   /** Backend RESTORE Icon */
00069   public static final Icon      BACKEND_RESTORE_ICON           = new ImageIcon(
00070                                                                    GuiIcons.class
00071                                                                        .getResource("/Backend_Restore.gif"));
00072 
00073   /** Backend RECOVERY Icon */
00074   public static final Icon      BACKEND_STATE_RECOVERY         = new ImageIcon(
00075                                                                    GuiIcons.class
00076                                                                        .getResource("/Backend_Recovery.gif"));
00077 
00078   /** Backend disabling icon */
00079   public static final Icon      BACKEND_DISABLING_ICON         = BACKEND_STATE_RECOVERY;
00080 
00081   /** Log panel Icon */
00082   public static final Icon      INFO_PANEL_ICON                = new ImageIcon(
00083                                                                    GuiIcons.class
00084                                                                        .getResource("/Panel_Info.gif"));
00085 
00086   /** Configuration file Icon */
00087   public static final Icon      CONFIGURATION_FILE_OBJECT_ICON = new ImageIcon(
00088                                                                    GuiIcons.class
00089                                                                        .getResource("/Object_Configuration_File.gif"));
00090 
00091   /** Controller Ready Icon */
00092   public static final Icon      CONTROLLER_READY               = new ImageIcon(
00093                                                                    GuiIcons.class
00094                                                                        .getResource("/Object_Controller_Ready.gif"));
00095 
00096   /** Controller down Icon */
00097   public static final Icon      CONTROLLER_DOWN                = new ImageIcon(
00098                                                                    GuiIcons.class
00099                                                                        .getResource("/Object_Controller_Down.gif"));
00100 
00101   /** Database Icon */
00102   public static final Icon      DATABASE_ICON                  = new ImageIcon(
00103                                                                    GuiIcons.class
00104                                                                        .getResource("/Object_Database.gif"));
00105 
00106   /** Help Panel Icon */
00107   public static final Icon      HELP_PANEL_ICON                = new ImageIcon(
00108                                                                    GuiIcons.class
00109                                                                        .getResource("/Panel_Help.gif"));
00110 
00111   /** Logging Panel Icon */
00112   public static final Icon      LOGGING_PANEL_ICON             = new ImageIcon(
00113                                                                    GuiIcons.class
00114                                                                        .getResource("/Panel_Logging.gif"));
00115 
00116   /** Dump File Icon */
00117   public static final Icon      DUMP_FILE_ICON                 = new ImageIcon(
00118                                                                    GuiIcons.class
00119                                                                        .getResource("/Object_Dump_File.gif"));
00120 
00121   /** Log Config Panel Icon */
00122   public static final Icon      LOG_CONFIG_PANEL_ICON          = new ImageIcon(
00123                                                                    GuiIcons.class
00124                                                                        .getResource("/Panel_Log_Configuration.gif"));
00125 
00126   /** Frame error Icon */
00127   public static final Icon      FRAME_ERROR_ICON               = new ImageIcon(
00128                                                                    GuiIcons.class
00129                                                                        .getResource("/Frame_Error.gif"));
00130 
00131   /** Database Single Icon */
00132   public static final Icon      DATABASE_SINGLE_ICON           = new ImageIcon(
00133                                                                    GuiIcons.class
00134                                                                        .getResource("/Database_Single.gif"));
00135 
00136   /** Database Distributed Icon */
00137   public static final Icon      DATABASE_DISTRIBUTED_ICON      = new ImageIcon(
00138                                                                    GuiIcons.class
00139                                                                        .getResource("/Database_Distributed.gif"));
00140 
00141   /** Custom Cursor Icon */
00142   public static final ImageIcon CUSTOM_CURSOR_ICON             = new ImageIcon(
00143                                                                    GuiIcons.class
00144                                                                        .getResource("/Cursor_Custom.gif"));
00145 
00146   /** Logo */
00147   public static final ImageIcon CJDBC_LOGO                     = new ImageIcon(
00148                                                                    GuiIcons.class
00149                                                                        .getResource("/c-jdbc.png"));
00150 
00151   /** Jmx * */
00152   public static final ImageIcon JMX_PANEL_ICON                 = new ImageIcon(
00153                                                                    GuiIcons.class
00154                                                                        .getResource("/Panel_JMX.gif"));
00155 
00156 }

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