Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » AspectJ » Working with AJEER
Working with AJEER [message #588425] Mon, 30 May 2005 10:08
Oren Mishali is currently offline Oren MishaliFriend
Messages: 10
Registered: July 2009
Junior Member
Hi All,

I'm trying to use AJEER plugin in order to weave a simple tracing aspect
to all eclipse plugins. But it doesn't work...

Shortly, here is what I did (following AJEER README very carefully):
1) I created new plugin project and converted it to AspectJ project.
2) I Added an aspect:

public aspect Executions {
pointcut allExecutions(): execution(public * *(..));

before(): allExecutions(){
System.out.println(thisJoinPoint);
}
}

3) I updated plugin.xml and it looks like that:
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<plugin>
<extension
id="AllExecutions"
name="All Executions"
point="org.aspectj.weavingruntime.aspects">
<aspect class="ajeer.example.aspects.Executions"/>
</extension>
</plugin>

4) I Created MANIFEST.MF and updated the startup parameters.

Then, I started a new workbench and I got ONLY this message to the
conslole:

MY PERSONAL ADAPTOR IS CREATED AND WILL START THE FRAMEWORK
Start Weaving Service

Where is all the other output??
Can anyone help???

Thanks in advance,
Oren.
Previous Topic:Can't seem to break in around advice
Next Topic:Working with AJEER
Goto Forum:
  


Current Time: Fri Apr 26 20:39:42 GMT 2024

Powered by FUDForum. Page generated in 0.03040 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top