![JAR search and dependency download from the Maven repository](/logo.png)
sbt.protocol.ExecutionEvent.scala Maven / Gradle / Ivy
/**
* This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
*/
// DO NOT EDIT MANUALLY
package sbt.protocol
/** Execution event. */
final class ExecutionEvent private (
val success: String,
val commandLine: String) extends Serializable {
override def equals(o: Any): Boolean = this.eq(o.asInstanceOf[AnyRef]) || (o match {
case x: ExecutionEvent => (this.success == x.success) && (this.commandLine == x.commandLine)
case _ => false
})
override def hashCode: Int = {
37 * (37 * (37 * (17 + "sbt.protocol.ExecutionEvent".##) + success.##) + commandLine.##)
}
override def toString: String = {
"ExecutionEvent(" + success + ", " + commandLine + ")"
}
private[this] def copy(success: String = success, commandLine: String = commandLine): ExecutionEvent = {
new ExecutionEvent(success, commandLine)
}
def withSuccess(success: String): ExecutionEvent = {
copy(success = success)
}
def withCommandLine(commandLine: String): ExecutionEvent = {
copy(commandLine = commandLine)
}
}
object ExecutionEvent {
def apply(success: String, commandLine: String): ExecutionEvent = new ExecutionEvent(success, commandLine)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy