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

org.datafx.controller.validation.flow.ViolationVeto Maven / Gradle / Ivy

There is a newer version: 8.0b5
Show newest version
package org.datafx.controller.validation.flow;

import org.datafx.controller.util.Veto;

import javax.validation.ConstraintViolation;
import java.util.Set;

public class ViolationVeto extends Veto {

	private static final long serialVersionUID = 1L;

	@SuppressWarnings("rawtypes")
	Set violations;

    @SuppressWarnings("rawtypes")
	public ViolationVeto(Set violations) {
        this.violations = violations;
    }

    @SuppressWarnings("rawtypes")
	public Set getViolations() {
        return violations;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy