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

com.softicar.platform.common.core.java.code.validation.output.IJavaCodeValidationOuput Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.core.java.code.validation.output;

/**
 * Interface to output Java code violations.
 *
 * @author Oliver Richers
 */
public interface IJavaCodeValidationOuput {

	/**
	 * Adds the given violation message.
	 *
	 * @param message
	 *            the violation message (never null)
	 */
	void addViolation(String message);

	/**
	 * Formats and adds the given violation message.
	 *
	 * @param message
	 *            the violation message (never null)
	 * @param arguments
	 *            the format arguments (never null)
	 */
	void formatViolation(String message, Object...arguments);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy