Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members  

TResourceSupplier.java

00001 /*
00002 *  Name:      TResourceSupplier.java
00003 *  Author:    Rafael Jesus Alcantara Perez
00004 *  Summary:   Dialog for authenticating an user
00005 *  Date:      $Date: 2003/08/31 18:21:37 $
00006 *  Revision:  $Revision: 1.4 $
00007 *
00008 *  Copyright (C) 2003  Rafael Jesus Alcantara Perez <rafa@dedalo-ing.com>
00009 *
00010 *  This program is free software; you can redistribute it and/or modify
00011 *  it under the terms of the GNU General Public License as published by
00012 *  the Free Software Foundation; either version 2 of the License, or
00013 *  (at your option) any later version.
00014 *
00015 *  This program is distributed in the hope that it will be useful,
00016 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00017 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00018 *  GNU General Public License for more details.
00019 *
00020 *  You should have received a copy of the GNU General Public License
00021 *  along with this program; if not, write to the Free Software
00022 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
00023 *  MA 02111-1307, USA.
00024 */
00025 
00027 package org.mpcl.nui;
00028 
00029 import java.awt.Color;
00030 import java.util.MissingResourceException;
00031 import java.util.ResourceBundle;
00032 
00033 
00040 public class TResourceSupplier implements IResourceSupplier
00041 {
00042 
00044   private static String   _kyColorSuffix = ".color";
00045 
00047   private static String   _kyMnemonicSuffix = ".mnemonic";
00048 
00050   private static String   _kyTextSuffix = ".text";
00051 
00053   private ResourceBundle   tResourceBundle;
00054 
00055 
00056   //
00057   //  C O N S T R U C T O R S
00058   //
00059 
00064   public TResourceSupplier (ResourceBundle tRESOURCE_BUNDLE)
00065   {
00066     tResourceBundle = tRESOURCE_BUNDLE;
00067   }
00068 
00069 
00070   //
00071   //  S E L E C T O R S
00072   //
00073 
00081   protected String getResourceString (final String kyRESOURCE_NAME, final String kySUFFIX)
00082   {
00083     return tResourceBundle.getString (kyRESOURCE_NAME + kySUFFIX);
00084   }
00085   
00086 
00087   //
00088   //  S E L E C T O R S
00089   //
00090 
00097   public Color getColor (final String kyRESOURCE_NAME)
00098   {
00099     return Color.decode (getResourceString (kyRESOURCE_NAME, _kyColorSuffix));
00100   }
00101 
00108   public String getText (final String kyRESOURCE_NAME)
00109   {
00110     return getResourceString (kyRESOURCE_NAME, _kyTextSuffix);
00111   }
00112 
00119   public char getMnemonic (final String kyRESOURCE_NAME)
00120   {
00121     return getResourceString (kyRESOURCE_NAME, _kyMnemonicSuffix).charAt (0);
00122   }
00123 
00129   public boolean hasMnemonic (final String kyRESOURCE_NAME)
00130   {
00131     boolean   gHasMnemonic = true;
00132 
00133     try
00134     {
00135       getResourceString (kyRESOURCE_NAME, _kyMnemonicSuffix);
00136     }
00137     catch (final MissingResourceException ktEXCEPTION)
00138     {
00139       gHasMnemonic = false;
00140     }
00141     return gHasMnemonic;
00142   }
00143 
00144 }  // class TResourceSupplier

Generated on Mon Oct 13 02:35:24 2003 for MPCL by doxygen1.2.18