1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-21 14:02:02 +02:00

[scala/eng] Added Java import to misc

This commit is contained in:
Juuso Mikkonen
2015-10-26 22:33:53 +02:00
parent 44ca091c73
commit 69efce9e83

View File

@@ -606,6 +606,9 @@ import scala.collection.immutable.{List => ImmutableList}
// Import all classes, except some. The following excludes Map and Set: // Import all classes, except some. The following excludes Map and Set:
import scala.collection.immutable.{Map => _, Set => _, _} import scala.collection.immutable.{Map => _, Set => _, _}
// Java classes can also be imported. Scala syntax can be used
import java.swing.{JFrame, JWindow}
// Your programs entry point is defined in an scala file using an object, with a // Your programs entry point is defined in an scala file using an object, with a
// single method, main: // single method, main:
object Application { object Application {