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

sbt.internal.protocol.JsonRpcMessage.scala Maven / Gradle / Ivy

The newest version!
/**
 * This code is generated using [[https://www.scala-sbt.org/contraband/ sbt-contraband]].
 */

// DO NOT EDIT MANUALLY
package sbt.internal.protocol
/** A general message as defined by JSON-RPC. */
abstract class JsonRpcMessage(
  val jsonrpc: String) extends Serializable {
  
  
  
  
  override def equals(o: Any): Boolean = this.eq(o.asInstanceOf[AnyRef]) || (o match {
    case x: JsonRpcMessage => (this.jsonrpc == x.jsonrpc)
    case _ => false
  })
  override def hashCode: Int = {
    37 * (37 * (17 + "sbt.internal.protocol.JsonRpcMessage".##) + jsonrpc.##)
  }
  override def toString: String = {
    "JsonRpcMessage(" + jsonrpc + ")"
  }
}
object JsonRpcMessage {
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy