analysis/heap-dump/impl/src/main/java/org/eclipse/jifa/hda/impl/VirtualClassItem.java [39:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.snapshot = snapshot;
        this.results = results;
        this.e = e;
        this.objectId = results.getContext(e).getObjectId();
    }

    @Override
    public String getSuffix() {
        return null;
    }

    @Override
    public int getObjectId() {
        return objectId;
    }

    @Override
    public int getObjectType() {
        try {
            return HeapDumpAnalyzerImpl.typeOf(snapshot.getObject(objectId));
        } catch (SnapshotException se) {
            throw new AnalysisException(se);
        }
    }

    @Override
    public boolean isGCRoot() {
        return snapshot.isGCRoot(objectId);
    }

    @Override
    public String getLabel() {
        return EscapeUtil.unescapeLabel((String) results.getColumnValue(e, COLUMN_LABEL));
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



analysis/heap-dump/impl/src/main/java/org/eclipse/jifa/hda/impl/VirtualClassLoaderItem.java [40:75]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        this.snapshot = snapshot;
        this.results = results;
        this.e = e;
        this.objectId = results.getContext(e).getObjectId();
    }

    @Override
    public String getSuffix() {
        return null;
    }

    @Override
    public int getObjectId() {
        return objectId;
    }

    @Override
    public int getObjectType() {
        try {
            return HeapDumpAnalyzerImpl.typeOf(snapshot.getObject(objectId));
        } catch (SnapshotException se) {
            throw new AnalysisException(se);
        }
    }

    @Override
    public boolean isGCRoot() {
        return snapshot.isGCRoot(objectId);
    }

    @Override
    public String getLabel() {
        return EscapeUtil.unescapeLabel((String) results.getColumnValue(e, COLUMN_LABEL));
    }

    @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



