|
Scala example source code file (t2484.scala)
The Scala t2484.scala source code
class Admin extends javax.swing.JApplet {
val jScrollPane = new javax.swing.JScrollPane (null, 0, 0)
def bug2484: Unit = {
scala.concurrent.ops.spawn {jScrollPane.synchronized {
def someFunction () = {}
//scala.concurrent.ops.spawn {someFunction ()}
jScrollPane.addComponentListener (new java.awt.event.ComponentAdapter {override def componentShown (e: java.awt.event.ComponentEvent) = {
someFunction (); jScrollPane.removeComponentListener (this)}})
}}
}
}
// t2630.scala
object Test {
def meh(xs: List[Any]) {
xs map { x => (new AnyRef {}) }
}
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala t2484.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.