ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/el/util/MessageFactory.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/java/org/apache/el/util/MessageFactory.java
Status
scanned
Type
file
Name
MessageFactory.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
2864 (2.8 KB)
MD5
8f554c74043e4140c13f23be30cfbfef
SHA1
161b2c52dec903e733ba8371455c2a22c19ccd8b
SHA256
f12baeb643f5601c3f0f305f7ee28ba2077a5e8961b6bd42a0d0899cd3e36174
SHA512

      
    
SHA1_git
96dcf1fe458b099a6e939b2a8920d2b178970d1d
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
MessageFactory.java | 2.8 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.el.util; import java.text.Format; import java.text.MessageFormat; import java.text.NumberFormat; import java.util.MissingResourceException; import java.util.ResourceBundle; public final class MessageFactory { private static final ResourceBundle DEFAULT_BUNDLE = ResourceBundle.getBundle("org.apache.el.LocalStrings"); private static final MessageFactory DEFAULT_MESSAGE_FACTORY = new MessageFactory(DEFAULT_BUNDLE); public static String get(final String key) { return DEFAULT_MESSAGE_FACTORY.getInternal(key); } public static String get(final String key, final Object... args) { return DEFAULT_MESSAGE_FACTORY.getInternal(key, args); } private final ResourceBundle bundle; public MessageFactory(ResourceBundle bundle) { this.bundle = bundle; } protected String getInternal(final String key) { try { return bundle.getString(key); } catch (MissingResourceException e) { return key; } } protected String getInternal(final String key, final Object... args) { String value = getInternal(key); MessageFormat mf = new MessageFormat(value); Format[] formats = null; // Unless an argument has been explicitly configured to use a number // format, convert all Number arguments to String else MessageFormat may // try to format them in unexpected ways. if (args != null) { for (int i = 0; i < args.length; i++) { if (args[i] instanceof Number) { if (formats == null) { formats = mf.getFormatsByArgumentIndex(); } if (i < formats.length && !(formats[i] instanceof NumberFormat)) { args[i] = args[i].toString(); } } } } return mf.format(args, new StringBuffer(), null).toString(); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
37.42
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9