summaryrefslogtreecommitdiffstats
path: root/ajde
diff options
context:
space:
mode:
authoraclement <aclement>2004-10-14 08:12:09 +0000
committeraclement <aclement>2004-10-14 08:12:09 +0000
commit6e155a6b9b78ec64f2fd4dc08152698277f1e7b7 (patch)
treea8209a54d2190e699cecb488c93825bcacf1b464 /ajde
parent234bea2297cc780d5bf38ebbc4087e938cc3b6e8 (diff)
downloadaspectj-6e155a6b9b78ec64f2fd4dc08152698277f1e7b7.tar.gz
aspectj-6e155a6b9b78ec64f2fd4dc08152698277f1e7b7.zip
Fix for Bugzilla Bug 74238: Applet which uses cflow pointcut gets AccessControlException
Diffstat (limited to 'ajde')
-rw-r--r--ajde/testdata/SecurityManagerTest/build.xml38
-rw-r--r--ajde/testdata/SecurityManagerTest/src/Aspect.aj24
-rw-r--r--ajde/testdata/SecurityManagerTest/src/HelloWorld.java24
3 files changed, 86 insertions, 0 deletions
diff --git a/ajde/testdata/SecurityManagerTest/build.xml b/ajde/testdata/SecurityManagerTest/build.xml
new file mode 100644
index 000000000..2b2496fc1
--- /dev/null
+++ b/ajde/testdata/SecurityManagerTest/build.xml
@@ -0,0 +1,38 @@
+<project name="SecurityManagerTest" default="all" basedir=".">
+
+ <property name="aspectj" value="j:\eclipse\aspectj_ws\aj-build\dist\tools\lib"/>
+ <property name="aspectjrt" value="${aspectj}/aspectjrt.jar" />
+ <property name="aspectjtools" value="${aspectj}/aspectjtools.jar" />
+
+ <taskdef resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties">
+ <classpath>
+ <pathelement path="${aspectjtools}"/>
+ </classpath>
+ </taskdef>
+
+ <target name="compile">
+ <iajc
+ srcdir="${basedir}/src"
+ classpath="${aspectjrt}"
+ destdir="${basedir}/bin"
+ verbose="true"
+
+ fork="true"
+ forkclasspath="${aspectjtools}"
+ >
+ </iajc>
+ </target>
+
+ <target name="run">
+ <java
+ classname="HelloWorld"
+ classpath="${basedir}/../../../runtime/bin;${basedir}/bin"
+ fork="yes"
+ >
+ <jvmarg value="-Djava.security.manager"/>
+ </java>
+ </target>
+
+ <target name="all" depends="compile, run"/>
+
+</project>
diff --git a/ajde/testdata/SecurityManagerTest/src/Aspect.aj b/ajde/testdata/SecurityManagerTest/src/Aspect.aj
new file mode 100644
index 000000000..74a3f6bc9
--- /dev/null
+++ b/ajde/testdata/SecurityManagerTest/src/Aspect.aj
@@ -0,0 +1,24 @@
+/*
+ * Created on 28-Sep-2004
+ *
+ * TODO To change the template for this generated file go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+
+
+
+/**
+ * @author websterm
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public aspect Aspect {
+
+ pointcut method () :
+ execution(* println(..)) && within(HelloWorld) && cflow(execution(* main(..)));
+
+ before () : method () {
+ System.out.println(thisJoinPoint.getSignature());
+ }
+}
diff --git a/ajde/testdata/SecurityManagerTest/src/HelloWorld.java b/ajde/testdata/SecurityManagerTest/src/HelloWorld.java
new file mode 100644
index 000000000..fe981e7e6
--- /dev/null
+++ b/ajde/testdata/SecurityManagerTest/src/HelloWorld.java
@@ -0,0 +1,24 @@
+/*
+ * Created on 28-Sep-2004
+ *
+ * TODO To change the template for this generated file go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+
+/**
+ * @author websterm
+ *
+ * TODO To change the template for this generated type comment go to
+ * Window - Preferences - Java - Code Style - Code Templates
+ */
+public class HelloWorld {
+
+ public static void println () {
+ System.out.println("Hello World!");
+ }
+
+ public static void main(String[] args) {
+ println();
+// System.getProperty("foo");
+ }
+}