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

scalapb.compiler.InsertionPoint.scala Maven / Gradle / Ivy

The newest version!
package scalapb.compiler

import com.google.protobuf.compiler.PluginProtos.CodeGeneratorResponse.File

final case class InsertionPoint(filename: String, insertionPoint: String) {
  def withContent(content: String): File = {
    File
      .newBuilder()
      .setName(filename)
      .setInsertionPoint(insertionPoint)
      .setContent(content)
      .build()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy