Uploaded image for project: 'Pivot'
  1. Pivot
  2. PIVOT-764

BeanAdapter should support Map objects

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 2.0.1
    • core-beans
    • None

    Description

      BeanAdapter currently does not support the ability to wrap Maps, because it will fail to retrieve the correct getterMethod and setterMethod. My current usecase is that I have a TableView with tableData that consists of objects with path "value-of-type-map.subvalue". The following code should return John Doe in my opinion:

      HashMap root = new HashMap();
      HashMap child = new HashMap();
      child.put("name", "John Doe");
      root.put("child", child);
      System.out.println(JSON.get(root, "child.name"));

      I will provide a patch.

      Attachments

        Activity

          People

            smartini Sandro Martini
            edvin Edvin Syse
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: