mirror of https://github.com/sbt/sbt.git
27 lines
927 B
Scala
27 lines
927 B
Scala
/**
|
|
* This code is generated using sbt-datatype.
|
|
*/
|
|
|
|
// DO NOT EDIT MANUALLY
|
|
import _root_.sjsonnew.{ deserializationError, serializationError, Builder, JsonFormat, Unbuilder }
|
|
trait CommandSourceFormats { self: sjsonnew.BasicJsonProtocol =>
|
|
implicit lazy val CommandSourceFormat: JsonFormat[sbt.CommandSource] = new JsonFormat[sbt.CommandSource] {
|
|
override def read[J](jsOpt: Option[J], unbuilder: Unbuilder[J]): sbt.CommandSource = {
|
|
jsOpt match {
|
|
case Some(js) =>
|
|
unbuilder.beginObject(js)
|
|
val channelName = unbuilder.readField[String]("channelName")
|
|
unbuilder.endObject()
|
|
sbt.CommandSource(channelName)
|
|
case None =>
|
|
deserializationError("Expected JsObject but found None")
|
|
}
|
|
}
|
|
override def write[J](obj: sbt.CommandSource, builder: Builder[J]): Unit = {
|
|
builder.beginObject()
|
|
builder.addField("channelName", obj.channelName)
|
|
builder.endObject()
|
|
}
|
|
}
|
|
}
|