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

cdc.issues.HasDiagnosis Maven / Gradle / Ivy

There is a newer version: 0.62.0
Show newest version
package cdc.issues;

/**
 * Interface implemented by classes that can return a {@link Diagnosis}.
 *
 * @author Damien Carbonne
 *
 * @param  The issue type. WARNING: deprecated (since 2023-10-14). Use Issue.
 */
@FunctionalInterface
public interface HasDiagnosis {
    /**
     * @return The diagnosis.
     */
    public Diagnosis getDiagnosis();
}