File: applet-prop.scala

package info (click to toggle)
scala 2.11.8-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 61,060 kB
  • ctags: 3,923
  • sloc: java: 13,251; xml: 3,214; sh: 1,553; python: 756; makefile: 40; awk: 36; ansic: 6
file content (40 lines) | stat: -rw-r--r-- 1,025 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
}