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

sbt.internal.bsp.ScalacOptionsItem.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.bsp
/**
 * @param options Additional arguments to the compiler.
                  For example, -deprecation.
 * @param classpath The dependency classpath for this target, must be
                    identical to what is passed as arguments to
                    the -classpath flag in the command line interface
                    of scalac.
 * @param classDirectory The output directory for classfiles produced by this target
 */
final class ScalacOptionsItem private (
  val target: sbt.internal.bsp.BuildTargetIdentifier,
  val options: Vector[String],
  val classpath: Vector[java.net.URI],
  val classDirectory: Option[java.net.URI]) extends Serializable {
  
  
  
  override def equals(o: Any): Boolean = this.eq(o.asInstanceOf[AnyRef]) || (o match {
    case x: ScalacOptionsItem => (this.target == x.target) && (this.options == x.options) && (this.classpath == x.classpath) && (this.classDirectory == x.classDirectory)
    case _ => false
  })
  override def hashCode: Int = {
    37 * (37 * (37 * (37 * (37 * (17 + "sbt.internal.bsp.ScalacOptionsItem".##) + target.##) + options.##) + classpath.##) + classDirectory.##)
  }
  override def toString: String = {
    "ScalacOptionsItem(" + target + ", " + options + ", " + classpath + ", " + classDirectory + ")"
  }
  private[this] def copy(target: sbt.internal.bsp.BuildTargetIdentifier = target, options: Vector[String] = options, classpath: Vector[java.net.URI] = classpath, classDirectory: Option[java.net.URI] = classDirectory): ScalacOptionsItem = {
    new ScalacOptionsItem(target, options, classpath, classDirectory)
  }
  def withTarget(target: sbt.internal.bsp.BuildTargetIdentifier): ScalacOptionsItem = {
    copy(target = target)
  }
  def withOptions(options: Vector[String]): ScalacOptionsItem = {
    copy(options = options)
  }
  def withClasspath(classpath: Vector[java.net.URI]): ScalacOptionsItem = {
    copy(classpath = classpath)
  }
  def withClassDirectory(classDirectory: Option[java.net.URI]): ScalacOptionsItem = {
    copy(classDirectory = classDirectory)
  }
  def withClassDirectory(classDirectory: java.net.URI): ScalacOptionsItem = {
    copy(classDirectory = Option(classDirectory))
  }
}
object ScalacOptionsItem {
  
  def apply(target: sbt.internal.bsp.BuildTargetIdentifier, options: Vector[String], classpath: Vector[java.net.URI], classDirectory: Option[java.net.URI]): ScalacOptionsItem = new ScalacOptionsItem(target, options, classpath, classDirectory)
  def apply(target: sbt.internal.bsp.BuildTargetIdentifier, options: Vector[String], classpath: Vector[java.net.URI], classDirectory: java.net.URI): ScalacOptionsItem = new ScalacOptionsItem(target, options, classpath, Option(classDirectory))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy