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;
}
}