|
Scala example source code file (applet-prop.scala)
The Scala applet-prop.scala source code
import scala.tools.partest._
import java.util.PropertyPermission
import java.security.AccessControlException
class S extends javax.swing.JApplet {
scala.collection.Traversable
}
object Test extends SecurityTest {
val s = new S
// lazy val TestKey = sys.SystemProperties.noTraceSupression.key
// def hitPerm() = new Throwable with scala.util.control.ControlThrowable { }
//
// var throwing = false
// override def propertyCheck(p: PropertyPermission): Unit = {
// if (p.getName == TestKey) {
// println("I see " + p.getName)
// if (throwing)
// throwIt(p)
// }
// }
//
// hitPerm()
// securityOn()
// hitPerm()
//
// throwing = true
//
// val caught =
// try { hitPerm() ; false }
// catch { case _: AccessControlException => true }
//
// assert(caught, "Should have incurred exception.")
// throwing = false
// hitPerm()
//
// val xs = new Traversable[Int] { def foreach[U](f: Int => U) = 1 to 3 foreach f }
// xs foreach println
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala applet-prop.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.