[jboss-cvs] JBossAS SVN: r62843 - in projects/aop/trunk/aop/docs/examples: after-throwing and 34 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon May 7 14:57:16 EDT 2007


Author: kabir.khan at jboss.com
Date: 2007-05-07 14:57:15 -0400 (Mon, 07 May 2007)
New Revision: 62843

Added:
   projects/aop/trunk/aop/docs/examples/examples.properties
Modified:
   projects/aop/trunk/aop/docs/examples/after-throwing/build.xml
   projects/aop/trunk/aop/docs/examples/all/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-aspects/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-cflow/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-composition/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-declare/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-interceptors/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-introduction/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-parameters/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-precedence/build.xml
   projects/aop/trunk/aop/docs/examples/annotated-typedef/build.xml
   projects/aop/trunk/aop/docs/examples/annotation-introductions/POJO.java
   projects/aop/trunk/aop/docs/examples/annotation-introductions/build.xml
   projects/aop/trunk/aop/docs/examples/annotation-introductions/complex.java
   projects/aop/trunk/aop/docs/examples/annotation-introductions/single.java
   projects/aop/trunk/aop/docs/examples/annotation-introductions/trace.java
   projects/aop/trunk/aop/docs/examples/annotation/build.xml
   projects/aop/trunk/aop/docs/examples/aspect/build.xml
   projects/aop/trunk/aop/docs/examples/beanstyleconf/build.xml
   projects/aop/trunk/aop/docs/examples/beforeafter/build.xml
   projects/aop/trunk/aop/docs/examples/caller/build.xml
   projects/aop/trunk/aop/docs/examples/cflow/build.xml
   projects/aop/trunk/aop/docs/examples/composition/build.xml
   projects/aop/trunk/aop/docs/examples/constructor-execution/build.xml
   projects/aop/trunk/aop/docs/examples/declare/build.xml
   projects/aop/trunk/aop/docs/examples/dynamic-aop/build.xml
   projects/aop/trunk/aop/docs/examples/dynamic_cflow/build.xml
   projects/aop/trunk/aop/docs/examples/examples-build.xml
   projects/aop/trunk/aop/docs/examples/field-execution/build.xml
   projects/aop/trunk/aop/docs/examples/implements/build.xml
   projects/aop/trunk/aop/docs/examples/instanceof/build.xml
   projects/aop/trunk/aop/docs/examples/introductions/build.xml
   projects/aop/trunk/aop/docs/examples/ioc_with_has/build.xml
   projects/aop/trunk/aop/docs/examples/method-execution/build.xml
   projects/aop/trunk/aop/docs/examples/overloaded-advices/build.xml
   projects/aop/trunk/aop/docs/examples/precedence/build.xml
   projects/aop/trunk/aop/docs/examples/return-types/build.xml
   projects/aop/trunk/aop/docs/examples/stacks/build.xml
   projects/aop/trunk/aop/docs/examples/typedef/build.xml
Log:


Modified: projects/aop/trunk/aop/docs/examples/after-throwing/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/after-throwing/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/after-throwing/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -1,5 +1,13 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<project default="usage" name="JBoss/AOP">
-   <import file="../examples-build.xml"/>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+
+<project default="usage" name="JBoss/AOP">
+   <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro"/>
+</project>

Modified: projects/aop/trunk/aop/docs/examples/all/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/all/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/all/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/annotated-aspects/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-aspects/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-aspects/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro.annotated"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-cflow/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-cflow/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-cflow/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro.annotated"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-composition/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-composition/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-composition/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro.annotated"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-declare/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-declare/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-declare/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro.annotated"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-dynamic-cflow/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro.annotated"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-interceptors/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-interceptors/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-interceptors/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro.annotated"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-introduction/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-introduction/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-introduction/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro.annotated"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-parameters/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-parameters/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-parameters/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-precedence/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-precedence/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-precedence/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro.annotated"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotated-typedef/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotated-typedef/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotated-typedef/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50.annotated"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50.annotated"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro.annotated"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro.annotated"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotation/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotation/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotation-introductions/POJO.java
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation-introductions/POJO.java	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotation-introductions/POJO.java	2007-05-07 18:57:15 UTC (rev 62843)
@@ -21,28 +21,22 @@
 */
 public class POJO
 {
-   /**
-    * @@trace 
-    * @@single ("hello world")
-    */
-   public POJO() 
+   @trace
+   @single ("hello world")
+   public POJO()
    {
       System.out.println("empty constructor");
    }
 
-   /**
-    * @@trace 
-    * @@single ("hello world")
-    */
+   @trace
+   @single ("hello world")
    public void someMethod()
    {
       System.out.println("someMethod");
    }
 
-   /**
-    * @@trace 
-    * @@single ("hello world")
-    */
+   @trace
+   @single ("hello world")
    public int field;
 }
 

Modified: projects/aop/trunk/aop/docs/examples/annotation-introductions/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation-introductions/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotation-introductions/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/annotation-introductions/complex.java
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation-introductions/complex.java	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotation-introductions/complex.java	2007-05-07 18:57:15 UTC (rev 62843)
@@ -19,7 +19,11 @@
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
-public interface complex
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+ at Retention(RetentionPolicy.RUNTIME)
+public @interface complex
 {
    char ch();
    String string();

Modified: projects/aop/trunk/aop/docs/examples/annotation-introductions/single.java
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation-introductions/single.java	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotation-introductions/single.java	2007-05-07 18:57:15 UTC (rev 62843)
@@ -19,7 +19,11 @@
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
-public interface single
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+ at Retention(RetentionPolicy.RUNTIME)
+public @interface single
 {
    String value();
 }

Modified: projects/aop/trunk/aop/docs/examples/annotation-introductions/trace.java
===================================================================
--- projects/aop/trunk/aop/docs/examples/annotation-introductions/trace.java	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/annotation-introductions/trace.java	2007-05-07 18:57:15 UTC (rev 62843)
@@ -20,4 +20,8 @@
   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
   */
 
-public interface trace {}
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+ at Retention(RetentionPolicy.RUNTIME)
+public @interface trace {}

Modified: projects/aop/trunk/aop/docs/examples/aspect/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/aspect/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/aspect/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/beanstyleconf/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/beanstyleconf/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/beanstyleconf/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/beforeafter/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/beforeafter/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/beforeafter/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/caller/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/caller/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/caller/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/cflow/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/cflow/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/cflow/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/composition/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/composition/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/composition/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/constructor-execution/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/constructor-execution/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/constructor-execution/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/declare/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/declare/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/declare/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/dynamic-aop/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/dynamic-aop/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/dynamic-aop/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/dynamic_cflow/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/dynamic_cflow/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/dynamic_cflow/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/examples-build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/examples-build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/examples-build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -1,5 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project name="build-common" default="usage">
+   <!--
+      Note that this build file is not runnable on its own. It is included from each
+      example's build.xml. Also, all paths are relative to the example sub-folders,
+      rather than from this parent folder
+   -->
+
    <target name="usage">
       <echo>Run one of the following targets:</echo>
       <echo> ant run.aopc.50          Run with compile-time weaving with JDK 5</echo>
@@ -8,7 +14,9 @@
       <echo> ant run.loadtime.14      Run with loadtime weaving with JDK 1.4</echo>
    </target>
 
-   <target name="prepare">
+   <target name="_prepare"
+      description="Set up the common paths and properties needed later">
+
       <property name="jboss.aop.root" value="../../../.."/>
       <property name="jboss.aop.lib14" value="${jboss.aop.root}/lib-14"/>
       <property name="jboss.aop.lib50" value="${jboss.aop.root}/lib-50"/>
@@ -25,6 +33,13 @@
          </fileset>
       </path>
 
+      <path id="jboss.retro.classpath">
+         <path refid="jboss.aop.classpath50"/>
+         <fileset dir="${jboss.aop.lib50}/retro">
+            <include name="*.jar"/>
+         </fileset>
+      </path>
+
       <property name="aop50jar" value="${jboss.aop.lib50}/jboss-aop-jdk50.jar"/>
 
       <path id="classpath50">
@@ -40,9 +55,14 @@
       <delete>
          <fileset dir="." includes="**/*.class"/>
       </delete>
+
+      <property file="../examples.properties"/>
    </target>
 
-   <target name="compile50" depends="prepare">
+
+   <target name="_compile50" depends="_prepare"
+      description="Compile the sources with JDK 5">
+
       <javac srcdir="."
          destdir="."
          debug="on"
@@ -53,7 +73,10 @@
       </javac>
    </target>
 
-   <target name="compile14" depends="prepare">
+
+   <target name="_compile14" depends="_prepare"
+      description="Compile the sources with JDK 1.4">
+
       <javac srcdir="."
          destdir="."
          debug="on"
@@ -64,7 +87,23 @@
       </javac>
    </target>
 
-   <target name="aopc50" depends="compile50">
+
+   <target name="_retro" depends="_compile50"
+      description="Translate JDK 5 class files so they are runnable with JDK 1.4">
+
+      <taskdef name="retro" classname="org.jboss.ant.tasks.retro.Retro" classpathref="jboss.retro.classpath"/>
+
+      <retro compilerclasspathref="jboss.retro.classpath" destdir=".">
+         <classpath refid="jboss.retro.classpath"/>
+         <classpath path="."/>
+         <src path="."/>
+      </retro>
+   </target>
+
+
+   <target name="_aopc50" depends="_compile50"
+      description="Compile-time weave the classes (JDK 5) using a jboss-aop.xml file">
+
       <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath50"/>
 
       <aopc compilerclasspathref="classpath50" classpathref="classpath50" verbose="true">
@@ -76,7 +115,25 @@
       </aopc>
    </target>
 
-   <target name="aopc14" depends="compile14">
+
+   <target name="_aopc50.annotated" depends="_compile50"
+      description="Compile-time weave the classes (JDK 5) using annotations to configure">
+
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath50"/>
+
+      <aopc compilerclasspathref="classpath50" classpathref="classpath50" verbose="true">
+         <sysproperty key="jboss.aop.class.path" value="."/>
+         <sysproperty key="jboss.aop.verbose" value="true"/>
+         <classpath path="."/>
+         <src path="."/>
+         <aopclasspath path="."/>
+      </aopc>
+   </target>
+
+
+   <target name="_aopc14" depends="_compile14"
+      description="Compile-time weave the classes (JDK 1.4) using a jboss-aop.xml file">
+
       <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath14"/>
 
       <aopc compilerclasspathref="classpath14" classpathref="classpath14" verbose="true">
@@ -88,42 +145,159 @@
       </aopc>
    </target>
 
-   <target name="run.aopc.50" depends="aopc50">
+
+   <target name="_aopc14.annotated" depends="_compile14"
+      description="Compile-time weave the classes (JDK 1.4) using annotations to configure">
+
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath14"/>
+
+      <aopc compilerclasspathref="classpath14" classpathref="classpath14" verbose="true">
+         <sysproperty key="jboss.aop.class.path" value="."/>
+         <sysproperty key="jboss.aop.verbose" value="true"/>
+         <classpath path="."/>
+         <src path="."/>
+         <aopclasspath path="."/>
+      </aopc>
+   </target>
+
+
+   <target name="_aopc14.retro" depends="_retro"
+      description="Compile-time weave the retroed classes (JDK 1.4) using a jboss-aop.xml file">
+
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath14"/>
+
+      <aopc compilerclasspathref="classpath14" classpathref="classpath14" verbose="true">
+         <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
+         <sysproperty key="jboss.aop.verbose" value="true"/>
+         <classpath path="."/>
+         <src path="."/>
+         <aoppath path="jboss-aop.xml"/>
+      </aopc>
+   </target>
+
+
+   <target name="_aopc14.retro.annotated" depends="_retro"
+      description="Compile-time weave the retroed classes (JDK 1.4) using annotations to configure">
+
+      <taskdef name="aopc" classname="org.jboss.aop.ant.AopC" classpathref="jboss.aop.classpath14"/>
+
+      <aopc compilerclasspathref="classpath14" classpathref="classpath14" verbose="true">
+         <sysproperty key="jboss.aop.class.path" value="."/>
+         <sysproperty key="jboss.aop.verbose" value="true"/>
+         <classpath path="."/>
+         <src path="."/>
+         <aopclasspath path=""/>
+      </aopc>
+   </target>
+
+
+   <target name="_create-classloader-hook14" depends="_prepare"
+      description="Create the woven classloader for JDK 1.4 loadtime weaving">
+
+      <!-- Create the classloader hook -->
+      <mkdir dir="jboss.aop.lib14/jdk14hook"/>
+      <java fork="yes" classname="org.jboss.aop.hook.GenerateInstrumentedClassLoader" jvm="">
+         <classpath>
+            <path refid="jboss.aop.classpath14"/>
+         </classpath>
+         <arg value="jboss.aop.lib14/jdk14hook"/>
+      </java>
+   </target>
+
+   <target name="_setup.java14" depends="_prepare">
+
+      <available file="${jdk14.java}" property="correct.jdk14"/>
+      <fail unless="correct.jdk14" message="You should modify jdk14.java in ../examples.properties to point to a JDK 1.4 executable. '${jdk14.java}' is not a valid location"/>
+   </target>
+
+   <!-- These are the main targets to be used -->
+
+   <target name="_run.aopc.50" depends="_aopc50"
+      description="Run the example using compile-time weaving on JDK 5, using a jboss-aop.xml file">
+
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
          <classpath refid="classpath50"/>
       </java>
    </target>
 
-   <target name="run.aopc.14" depends="aopc14">
+
+   <target name="_run.aopc.50.annotated" depends="_aopc50.annotated"
+      description="Run the example using compile-time weaving on JDK 5, using annotations to configure">
+
       <java fork="yes" failOnError="true" className="Driver">
-         <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
+         <sysproperty key="jboss.aop.class.path" value="."/>
          <classpath refid="classpath50"/>
       </java>
    </target>
 
-   <target name="run.loadtime.50" depends="compile50">
+
+   <target name="_run.aopc.14" depends="_aopc14"
+      description="Run the example using compile-time weaving on JDK 1.4, using a jboss-aop.xml file">
+
       <java fork="yes" failOnError="true" className="Driver">
          <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
+         <classpath refid="classpath14"/>
+      </java>
+   </target>
+
+
+   <target name="_run.aopc.14.retro" depends="_aopc14.retro, _setup.java14"
+      description="Run the example using compile-time weaving on JDK 1.4, having compiled the classes using JDK 5 and jboss retro, using a jboss-aop.xml file">
+
+      <java fork="yes" failOnError="true" className="Driver" jvm="${jdk14.java}">
+         <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
+         <classpath refid="classpath14"/>
+      </java>
+   </target>
+
+
+   <target name="_run.aopc.14.retro.annotated" depends="_aopc14.retro.annotated, _setup.java14"
+      description="Run the example using compile-time weaving on JDK 1.4, having compiled the classes using JDK 5 and jboss retro, using annotations to configure">
+
+      <java fork="yes" failOnError="true" className="Driver" jvm="${jdk14.java}">
+         <sysproperty key="jboss.aop.class.path" value="."/>
+         <classpath refid="classpath14"/>
+      </java>
+   </target>
+
+
+   <target name="_run.loadtime.50" depends="_compile50"
+      description="Run the example using loadtime-time weaving on JDK 5, using a jboss-aop.xml file">
+
+      <java fork="yes" failOnError="true" className="Driver">
+         <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
          <jvmarg value="-javaagent:${aop50jar}"/>
          <classpath refid="classpath50"/>
       </java>
    </target>
 
-   <target name="create-classloader-hook14" depends="prepare">
+
+   <target name="_run.loadtime.50.annotated" depends="_compile50"
+      description="Run the example using loadtime-time weaving on JDK 5, using annotations to configure">
+
+      <java fork="yes" failOnError="true" className="Driver">
+         <sysproperty key="jboss.aop.class.path" value="."/>
+         <jvmarg value="-javaagent:${aop50jar}"/>
+         <classpath refid="classpath50"/>
+      </java>
+   </target>
+
+
+   <target name="_run.loadtime.14" depends="_compile14"
+      description="Run the example using loadtime-time weaving on JDK 1.4, using a jboss-aop.xml file">
+
       <!-- Create the classloader hook -->
       <mkdir dir="jboss.aop.lib14/jdk14hook"/>
       <java fork="yes" classname="org.jboss.aop.hook.GenerateInstrumentedClassLoader">
          <classpath>
             <path refid="jboss.aop.classpath14"/>
          </classpath>
-         <arg value="jboss.aop.lib14/jdk14hook"/>
+         <arg value="${jboss.aop.lib14}/jdk14hook"/>
       </java>
-   </target>
 
-   <target name="run.loadtime.14" depends="compile14, create-classloader-hook14">
       <path id="bootclasspath">
-         <pathelement location="jboss.aop.lib14/jdk14hook"/>
+         <pathelement location="${jboss.aop.lib14}/jdk14hook"/>
          <path refid="jboss.aop.classpath14"/>
       </path>
       <property name="bootclasspath" refid="bootclasspath"/>
@@ -134,4 +308,56 @@
          <classpath path="."/>
       </java>
    </target>
+
+
+   <target name="_run.loadtime.14.retro" depends="_retro, _setup.java14"
+      description="Run the example using loadtime-time weaving on JDK 1.4, having compiled the classes using JDK 5 and jboss retro, using a jboss-aop.xml file">
+
+      <!-- Create the classloader hook -->
+      <mkdir dir="jboss.aop.lib14/jdk14hook"/>
+      <java fork="yes" classname="org.jboss.aop.hook.GenerateInstrumentedClassLoader" jvm="${jdk14.java}">
+         <classpath>
+            <path refid="jboss.aop.classpath14"/>
+         </classpath>
+         <arg value="${jboss.aop.lib14}/jdk14hook"/>
+      </java>
+
+      <path id="bootclasspath">
+         <pathelement location="${jboss.aop.lib14}/jdk14hook"/>
+         <path refid="jboss.aop.classpath14"/>
+      </path>
+      <property name="bootclasspath" refid="bootclasspath"/>
+
+      <java fork="yes" failOnError="true" className="Driver" jvm="${jdk14.java}">
+         <sysproperty key="jboss.aop.path" value="jboss-aop.xml"/>
+         <jvmarg value="-Xbootclasspath/p:${bootclasspath}"/>
+         <classpath path="."/>
+      </java>
+   </target>
+
+   <target name="_run.loadtime.14.retro.annotated" depends="_retro, _setup.java14"
+      description="Run the example using loadtime-time weaving on JDK 1.4, having compiled the classes using JDK 5 and jboss retro, using annotations">
+
+      <!-- Create the classloader hook -->
+      <mkdir dir="jboss.aop.lib14/jdk14hook"/>
+      <java fork="yes" classname="org.jboss.aop.hook.GenerateInstrumentedClassLoader" jvm="${jdk14.java}">
+         <classpath>
+            <path refid="jboss.aop.classpath14"/>
+         </classpath>
+         <arg value="${jboss.aop.lib14}/jdk14hook"/>
+      </java>
+
+      <path id="bootclasspath">
+         <pathelement location="${jboss.aop.lib14}/jdk14hook"/>
+         <path refid="jboss.aop.classpath14"/>
+      </path>
+      <property name="bootclasspath" refid="bootclasspath"/>
+
+      <java fork="yes" failOnError="true" className="Driver" jvm="${jdk14.java}">
+         <sysproperty key="jboss.aop.class.path" value="."/>
+         <jvmarg value="-Xbootclasspath/p:${bootclasspath}"/>
+         <classpath path="."/>
+      </java>
+   </target>
+
 </project>
\ No newline at end of file

Added: projects/aop/trunk/aop/docs/examples/examples.properties
===================================================================
--- projects/aop/trunk/aop/docs/examples/examples.properties	                        (rev 0)
+++ projects/aop/trunk/aop/docs/examples/examples.properties	2007-05-07 18:57:15 UTC (rev 62843)
@@ -0,0 +1 @@
+jdk14.java=C:/Java/jdk/j2sdk1.4.2_09/bin/java.exe
\ No newline at end of file

Modified: projects/aop/trunk/aop/docs/examples/field-execution/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/field-execution/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/field-execution/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/implements/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/implements/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/implements/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/instanceof/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/instanceof/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/instanceof/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/introductions/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/introductions/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/introductions/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/ioc_with_has/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/ioc_with_has/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/ioc_with_has/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/method-execution/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/method-execution/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/method-execution/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/overloaded-advices/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/overloaded-advices/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/overloaded-advices/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/precedence/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/precedence/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/precedence/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/return-types/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/return-types/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/return-types/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,12 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14.retro"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14.retro"/>
 </project>

Modified: projects/aop/trunk/aop/docs/examples/stacks/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/stacks/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/stacks/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+

Modified: projects/aop/trunk/aop/docs/examples/typedef/build.xml
===================================================================
--- projects/aop/trunk/aop/docs/examples/typedef/build.xml	2007-05-07 18:29:38 UTC (rev 62842)
+++ projects/aop/trunk/aop/docs/examples/typedef/build.xml	2007-05-07 18:57:15 UTC (rev 62843)
@@ -2,4 +2,13 @@
 
 <project default="usage" name="JBoss/AOP">
    <import file="../examples-build.xml"/>
+
+   <target name="run.aopc.50" depends="_run.aopc.50"/>
+
+   <target name="run.loadtime.50" depends="_run.loadtime.50"/>
+
+   <target name="run.aopc.14" depends="_run.aopc.14"/>
+
+   <target name="run.loadtime.14" depends="_run.loadtime.14"/>
 </project>
+




More information about the jboss-cvs-commits mailing list