Lines Matching defs:format

493         // bundle format which is necessary for calling
495 private String format;
618 return format;
621 void setFormat(String format) {
622 this.format = format;
651 + "(format=" + format + ")]";
1068 * candidate locale, and a format. (Refer to the note on the cache
1076 * sequence of locale-format combinations to be used to call
1087 * style="vertical-align: top; text-align: left; font-weight: bold; width: 50%;">format<br>
1434 String format = formats.get(i);
1436 bundle = control.newBundle(cacheKey.getName(), targetLocale, format,
1447 // Set the format in the cache key so that it can be
1449 cacheKey.setFormat(format);
1893 * String format,
1900 * || format == null || loader == null)
1903 * if (format.equals("xml")) {
1905 * String resourceName = toResourceName(bundleName, format);
1952 * The default format <code>List</code>, which contains the strings
1964 * The class-only format <code>List</code> containing
1974 * The properties-only format <code>List</code> containing
2465 * given format and locale, using the given class loader if
2486 * <li>If <code>format</code> is <code>"java.class"</code>, the
2494 * <li>If <code>format</code> is <code>"java.properties"</code>,
2511 * <li>If <code>format</code> is neither <code>"java.class"</code>
2523 * @param format
2524 * the resource bundle format to be loaded
2535 * <code>format</code>, or <code>loader</code> is
2539 * if <code>format</code> is unknown, or if the resource
2559 public ResourceBundle newBundle(String baseName, Locale locale, String format,
2564 if (format.equals("java.class")) {
2579 } else if (format.equals("java.properties")) {
2617 throw new IllegalArgumentException("unknown format: " + format);
2695 * implementation assumes that the given <code>format</code> is the
2706 * @param format
2707 * the resource bundle format to be loaded
2720 * <code>format</code>, <code>loader</code>, or
2724 String format, ClassLoader loader,
2729 if (format.equals("java.class") || format.equals("java.properties")) {
2730 format = format.substring(5);
2734 String resourceName = toResourceName(toBundleName(baseName, locale), format);