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

com.github.fluentxml4j.validate.ValidationResult Maven / Gradle / Ivy

package com.github.fluentxml4j.validate;

import java.util.List;

public class ValidationResult
{
	private List errors;

	public ValidationResult(List errors)
	{
		this.errors = errors;
	}

	public boolean hasErrors() {
		return !this.errors.isEmpty();
	}

	public List getErrors() {
		return this.errors;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy