blob: 328d65deb13914a025b36e31a2d1a563c9ea6bc2 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
package org.eclipse.jifa.worker.vo.heapdump.classloader;
import lombok.Data;
@Data
public class Record {
private int objectId;
private String prefix;
private String label;
private boolean classLoader;
private boolean hasParent;
private int definedClasses;
private int numberOfInstances;
}