Class CardMessages


  • public final class CardMessages
    extends java.lang.Object
    Gestor de mensajes de las tarjetas (principalmente Callbacks).
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static java.lang.String BUNDLE_NAME  
      private static java.util.logging.Logger LOGGER  
      private static java.util.ResourceBundle RESOURCE_BUNDLE  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private CardMessages()
      Constructor privado y vacío.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String getString​(java.lang.String key)
      Recupera el texto identificado con la clave proporcionada.
      static java.lang.String getString​(java.lang.String key, java.lang.String text)
      Recupera el texto identificado con la clave proporcionada y sustituye la subcadena "%0" por el texto proporcionado.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • RESOURCE_BUNDLE

        private static final java.util.ResourceBundle RESOURCE_BUNDLE
      • LOGGER

        private static final java.util.logging.Logger LOGGER
    • Constructor Detail

      • CardMessages

        private CardMessages()
        Constructor privado y vacío.
    • Method Detail

      • getString

        public static java.lang.String getString​(java.lang.String key,
                                                 java.lang.String text)
        Recupera el texto identificado con la clave proporcionada y sustituye la subcadena "%0" por el texto proporcionado.
        Parameters:
        key - Clave del texto.
        text - Texto que se desea insertar.
        Returns:
        Recurso textual con la subcadena sustituida.
      • getString

        public static java.lang.String getString​(java.lang.String key)
        Recupera el texto identificado con la clave proporcionada.
        Parameters:
        key - Clave del texto.
        Returns:
        Recurso textual.