All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmlens.report.uielement.UIStacktraceLeaf Maven / Gradle / Ivy

The newest version!
package com.vmlens.report.uielement;

import java.util.List;

public class UIStacktraceLeaf {

    private final List stacktraceElements;

    // Is null when stacktraceElements is empty
    private String reportLink;

    public UIStacktraceLeaf(List stacktraceElements) {
        this.stacktraceElements = stacktraceElements;
    }

    public List stacktraceElements() {
        return stacktraceElements;
    }

    public String reportLink() {
        return reportLink;
    }

    public void setReportLink(String reportLink) {
        this.reportLink = reportLink;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy