< prev index next >

src/com/sun/org/apache/xerces/internal/util/DatatypeMessageFormatter.java

Print this page
rev 2127 : 8048021: Remove @version tag in jaxp repo
Reviewed-by: joehw


  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.util;
  22 
  23 import com.sun.org.apache.xerces.internal.utils.SecuritySupport;
  24 import java.util.Locale;
  25 import java.util.MissingResourceException;
  26 import java.util.ResourceBundle;
  27 
  28 /**
  29  * <p>Used to format JAXP 1.3 Datatype API error messages using a specified locale.</p>
  30  *
  31  * @author  Neeraj Bajaj, Sun Microsystems
  32  * @version $Id: DatatypeMessageFormatter.java,v 1.6 2010-11-01 04:40:14 joehw Exp $
  33  */
  34 public class DatatypeMessageFormatter {
  35 
  36     private static final String BASE_NAME = "com.sun.org.apache.xerces.internal.impl.msg.DatatypeMessages";
  37 
  38     /**
  39      * Formats a message with the specified arguments using the given
  40      * locale information.
  41      *
  42      * @param locale    The locale of the message.
  43      * @param key       The message key.
  44      * @param arguments The message replacement text arguments. The order
  45      *                  of the arguments must match that of the placeholders
  46      *                  in the actual message.
  47      *
  48      * @return          the formatted message.
  49      *
  50      * @throws MissingResourceException Thrown if the message with the
  51      *                                  specified key cannot be found.
  52      */




  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.util;
  22 
  23 import com.sun.org.apache.xerces.internal.utils.SecuritySupport;
  24 import java.util.Locale;
  25 import java.util.MissingResourceException;
  26 import java.util.ResourceBundle;
  27 
  28 /**
  29  * <p>Used to format JAXP 1.3 Datatype API error messages using a specified locale.</p>
  30  *
  31  * @author  Neeraj Bajaj, Sun Microsystems

  32  */
  33 public class DatatypeMessageFormatter {
  34 
  35     private static final String BASE_NAME = "com.sun.org.apache.xerces.internal.impl.msg.DatatypeMessages";
  36 
  37     /**
  38      * Formats a message with the specified arguments using the given
  39      * locale information.
  40      *
  41      * @param locale    The locale of the message.
  42      * @param key       The message key.
  43      * @param arguments The message replacement text arguments. The order
  44      *                  of the arguments must match that of the placeholders
  45      *                  in the actual message.
  46      *
  47      * @return          the formatted message.
  48      *
  49      * @throws MissingResourceException Thrown if the message with the
  50      *                                  specified key cannot be found.
  51      */


< prev index next >