Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] How to "disable" aspect

Title: Re: [aspectj-users] How to "disable" aspect
You can also change the body of the pointcut from an _expression_ to just a semicolon (;).  This will disable recognition of specific pointcuts.



From: Josh <gemini929@xxxxxxxxx>
Reply-To: <aspectj-users@xxxxxxxxxxx>
Date: Wed, 18 Apr 2007 11:14:10 -0400
To: aspectj-users <aspectj-users@xxxxxxxxxxx>
Subject: [aspectj-users] How to "disable" aspect

I am a beginner with AspectJ.  I have assembled several aspects which are usefull to my project.  Some aspects, like the tracing aspect, I only use
occasionally.  Is there a way to "disable" an aspect in the source code instead of removing the entire aspect from your source directory?

-Joshua


_______________________________________________
aspectj-users mailing list
aspectj-users@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Back to the top