analysis/heap-dump/impl/src/main/java/org/eclipse/jifa/hda/impl/HeapDumpAnalyzerImpl.java [1236:1255]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        PageViewBuilder.build(
                                ((IResultTree) result).getElements(),
                                new PagingRequest(page, pageSize),
                                e -> $(() -> context.snapshot.getObject(((IResultTree) result).getContext(e).getObjectId())),
                                o -> $(() -> {
                                    JavaObject jo = new JavaObject();
                                    jo.setObjectId(o.getObjectId());
                                    jo.setLabel(o.getDisplayName());
                                    jo.setSuffix(Helper.suffix(o.getGCRootInfo()));
                                    jo.setShallowSize(o.getUsedHeapSize());
                                    jo.setRetainedSize(o.getRetainedHeapSize());
                                    jo.setGCRoot(context.snapshot.isGCRoot(o.getObjectId()));
                                    jo.setObjectType(typeOf(o));
                                    jo.setHasOutbound(true);
                                    return jo;
                                }), IObjectSortHelper.sortBy(sortBy, ascendingOrder)));
            } else if (result instanceof IResultTable) {
                IResultTable table = (IResultTable) result;
                Column[] columns = table.getColumns();
                List<String> cs = Arrays.stream(columns).map(Column::getLabel).collect(Collectors.toList());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



analysis/heap-dump/impl/src/main/java/org/eclipse/jifa/hda/impl/HeapDumpAnalyzerImpl.java [1305:1324]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                        PageViewBuilder.build(
                                ((IResultTree) result).getElements(),
                                new PagingRequest(page, pageSize),
                                e -> $(() -> context.snapshot.getObject(((IResultTree) result).getContext(e).getObjectId())),
                                o -> $(() -> {
                                    JavaObject jo = new JavaObject();
                                    jo.setObjectId(o.getObjectId());
                                    jo.setLabel(o.getDisplayName());
                                    jo.setSuffix(Helper.suffix(o.getGCRootInfo()));
                                    jo.setShallowSize(o.getUsedHeapSize());
                                    jo.setRetainedSize(o.getRetainedHeapSize());
                                    jo.setGCRoot(context.snapshot.isGCRoot(o.getObjectId()));
                                    jo.setObjectType(typeOf(o));
                                    jo.setHasOutbound(true);
                                    return jo;
                                }), IObjectSortHelper.sortBy(sortBy, ascendingOrder)));
            } else if (result instanceof IResultTable) {
                IResultTable table = (IResultTable) result;
                Column[] columns = table.getColumns();
                List<String> cs = Arrays.stream(columns).map(Column::getLabel).collect(Collectors.toList());
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



