get nested List of CustomObject from JTree, including leaf
问题 Get List<List<CustomObject>> from JTree I was populating the JTree according to this question... Recursively populate JTree, using list of list using the Answer https://stackoverflow.com/a/56090968/7339033 List<List<Pair>> listOfListPair = new ArrayList<>(); listOfListPair.add((List<Pair>) Arrays.asList( new Pair[]{new Pair(1, 1), new Pair(3, 1), new Pair(1, 2)})); listOfListPair.add((List<Pair>) Arrays.asList( new Pair[]{new Pair(1, 1), new Pair(3, 1), new Pair(3, 1)})); listOfListPair.add(