[jboss-cvs] JBossAS SVN: r81632 - projects/aop/branches/Branch_2_0/aop/docs/reference/reference/en/modules.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 26 09:33:12 EST 2008


Author: kabir.khan at jboss.com
Date: 2008-11-26 09:33:12 -0500 (Wed, 26 Nov 2008)
New Revision: 81632

Modified:
   projects/aop/branches/Branch_2_0/aop/docs/reference/reference/en/modules/pointcuts.xml
Log:
[JBAOP-679] Fix {} example

Modified: projects/aop/branches/Branch_2_0/aop/docs/reference/reference/en/modules/pointcuts.xml
===================================================================
--- projects/aop/branches/Branch_2_0/aop/docs/reference/reference/en/modules/pointcuts.xml	2008-11-26 14:32:50 UTC (rev 81631)
+++ projects/aop/branches/Branch_2_0/aop/docs/reference/reference/en/modules/pointcuts.xml	2008-11-26 14:33:12 UTC (rev 81632)
@@ -105,8 +105,8 @@
          only matches methods from the exact interface(s) given, while <literal>$implementing{}</literal>
          matches methods from the interface(s) given AND their super interfaces.
       </para>
-      <programlisting>void $instanceof{org.acme.IfA}->$implements(org.acme.IfA)</programlisting>
-      <programlisting>void $instanceof{org.acme.IfB}->$implementing(org.acme.IfA, org.acme.IfB)</programlisting>
+      <programlisting>void $instanceof{org.acme.IfA}->$implements(org.acme.IfA)(..)</programlisting>
+      <programlisting>void $instanceof{org.acme.IfB}->$implementing(org.acme.IfA, org.acme.IfB)(..)</programlisting>
       <para>
          Annotations can be used in place of the class name.  The below example matches any methodName() of a tagged
          @javax.ejb.Entity class.




More information about the jboss-cvs-commits mailing list