Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8102326

Accept also Maps with resources, not only ResourceBundles

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • None
    • javafx

      A ResourceBundle is very inconvenient to use, and probably exists already since the 90ies and was designed without having much practical experience.
      Instead of writing a property file (for the PropertyResourceBundle), provide an InputStream or Reader for it, just let us provide a java.util.Map.
      For example Clojure's persistent hashmaps implement that interface, and there is a convenient syntax for this.
      The input Map would map from String to String.

      (def de {"username" "Benutzername:", "pw" "Passwort:"})
      (def en {"username" "Username:", "pw" "Password:"})

      (load-fxml "c:/ui.fxml" de) <-- good solution

      load-fxml calls FXMLLoader.load and currently translates the path String into an URL (see RT-22846).

            gkbrown Greg Brown (Inactive)
            athiemejfx Andre Thieme (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: