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

io.github.apexdevtools.apexls.api.ApexResourceFile Maven / Gradle / Ivy

/*
 * Copyright (c) 2022 FinancialForce.com, inc. All rights reserved.
 */

package io.github.apexdevtools.apexls.api;

import java.util.List;

public class ApexResourceFile {

    private final String filename;
    private final List types;
    private final boolean hasErrors;

    public ApexResourceFile(String filename, List types, boolean hasErrors) {
        this.filename = filename;
        this.types = types;
        this.hasErrors = hasErrors;
    }

    public List getTypes() {
        return types;
    }

    public String getFilename() {
        return filename;
    }

    public boolean hasError() {
        return hasErrors;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy