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

io.gitlab.arturbosch.detekt.api.Notification.kt Maven / Gradle / Ivy

The newest version!
package io.gitlab.arturbosch.detekt.api

/**
 * Any kind of notification which should be printed to the console.
 * For example when using the formatting rule set, any change to
 * your kotlin file is a notification.
 */
interface Notification {
    val message: String
    val level: Level
    val isError: Boolean
        get() = level == Level.Error

    /**
     * Level of severity of the notification
     */
    enum class Level {
        Info,
        Warning,
        Error
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy