<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Refining Target Methods</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Refining%2520Target%2520Methods/</link><description>Recent changes to Refining Target Methods</description><atom:link href="https://sourceforge.net/p/mobgenlogger/wiki/Refining%20Target%20Methods/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 04 May 2012 12:40:35 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/mobgenlogger/wiki/Refining%20Target%20Methods/feed" rel="self" type="application/rss+xml"/><item><title>WikiPage Refining Target Methods modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Refining%2520Target%2520Methods/</link><description>&lt;pre&gt;--- v3 
+++ v4 
@@ -30,10 +30,10 @@
 
 +__loggerAspectExcludes__
 
-&gt;Normally we put all the packages that we wanted to exclude in aspect advices here.
-
+&gt;Normally we put all the packages that we wanted to exclude in aspect advices here. By default this excludes java, javax, org.eclipse, org.apache and junit packages and their sub-packages. 
+
 +__loggerAspectTargetMethods__
 
-&gt;This is where we target the methods we wanted to be advised. 
+&gt;This is where we target the methods we wanted to be advised. By default this targets all the methods that are not excluded by loggerAspectExcludes pointcut. 
 
 *Note: Both pointcuts use AspectJ expressions.*
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 12:40:35 -0000</pubDate><guid>https://sourceforge.net49fb7939f6b0ae362654ef0e75088cbecbc89055</guid></item><item><title>WikiPage Refining Target Methods modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Refining%2520Target%2520Methods/</link><description>&lt;pre&gt;--- v2 
+++ v3 
@@ -35,3 +35,5 @@
 +__loggerAspectTargetMethods__
 
 &gt;This is where we target the methods we wanted to be advised. 
+
+*Note: Both pointcuts use AspectJ expressions.*
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 12:37:47 -0000</pubDate><guid>https://sourceforge.netc4409d307b50d956491dfc7f189552a1cb29f9f2</guid></item><item><title>WikiPage Refining Target Methods modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Refining%2520Target%2520Methods/</link><description>&lt;pre&gt;--- v1 
+++ v2 
@@ -1,1 +1,37 @@
-Under construction.
+To refine the target methods for __M0bG3n Load Time Logging__, we need the knowledge about the __AspectJ pointcut usage__. The actual refinement is possible in the __META-INF/aop.xml__ file inside the __logger-loadtime-aspect*.jar__s. 
+
+The default content of aop.xml file is as follows:
+
+______
+
+    &lt;aspectj&gt;
+	&lt;aspects&gt;
+		&lt;concrete-aspect name="net.sf.mobg3n.logging.aspect.ConcreteLoggerAspect"
+			extends="net.sf.mobg3n.logging.aspect.AbstractLoggerAspect"&gt;
+			&lt;pointcut name="loggerAspectExcludes"
+				expression="!within(java.*..*) 
+				&amp;amp;&amp;amp; !within(javax.*..*) 
+				&amp;amp;&amp;amp; !within(org.eclipse.*..*) 
+				&amp;amp;&amp;amp; !within(org.apache.*..*) 
+				&amp;amp;&amp;amp; !within(junit.*..*)
+				" /&gt;
+			&lt;pointcut name="loggerAspectTargetMethods" expression="execution(* *..*(..))" /&gt;
+		&lt;/concrete-aspect&gt;
+	&lt;/aspects&gt;
+
+	&lt;!-- &lt;weaver options="-showWeaveInfo"/&gt; --&gt;
+
+    &lt;/aspectj&gt; 
+
+______
+
+
+There are two pointcut names that are configured here and they are the following:
+
++__loggerAspectExcludes__
+
+&gt;Normally we put all the packages that we wanted to exclude in aspect advices here.
+
++__loggerAspectTargetMethods__
+
+&gt;This is where we target the methods we wanted to be advised. 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 12:36:28 -0000</pubDate><guid>https://sourceforge.net7bd19b2394b6ef4dc26f383c57c2bd20766fe2da</guid></item><item><title>WikiPage Refining Target Methods modified by RCW3BB</title><link>https://sourceforge.net/p/mobgenlogger/wiki/Refining%2520Target%2520Methods/</link><description>Under construction.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">RCW3BB</dc:creator><pubDate>Fri, 04 May 2012 03:52:18 -0000</pubDate><guid>https://sourceforge.netd4e063714048a02d190e9991cacfdddabe9c8eae</guid></item></channel></rss>