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

org.nasdanika.common.DiagnosticChain Maven / Gradle / Ivy

There is a newer version: 2024.11.0
Show newest version
package org.nasdanika.common;

/**
 * 
 * @author Pavel
 *
 */
public interface DiagnosticChain {

	/**
	 * Adds the diagnostic to the chain.
	 */
	void add(Diagnostic diagnostic);

	/**
	 * Adds the {@link Diagnostic#getChildren children} of the diagnostic to the
	 * chain.
	 */
	void addAll(Diagnostic diagnostic);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy