sbt/main-command/src/main/contraband-scala/CommandSourceFormats.scala

27 lines
958 B
Scala
Raw Normal View History

2017-01-06 17:35:08 +01:00
/**
2017-03-23 19:30:51 +01:00
* This code is generated using [[http://www.scala-sbt.org/contraband/ sbt-contraband]].
2017-01-06 17:35:08 +01:00
*/
// DO NOT EDIT MANUALLY
import _root_.sjsonnew.{ Unbuilder, Builder, JsonFormat, deserializationError }
2017-01-06 17:35:08 +01:00
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)
2017-01-06 17:35:08 +01:00
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()
}
}
}