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

java.net.URLConnection.scala Maven / Gradle / Ivy

The newest version!
package java.net

import java.io.InputStream

// only for linking Scala.js 1.x
trait URLConnection { // abstract class
  def setRequestProperty(key: String, value: String): Unit = ???

  def connect(): Unit = ??? // abstract

  def getContentType(): String = ???

  def getInputStream(): InputStream = ???
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy