Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » AspectJ » Struggling with how to make a simple poincut
Struggling with how to make a simple poincut [message #601094] Mon, 28 June 2010 21:03
Daniel Kashtan is currently offline Daniel KashtanFriend
Messages: 15
Registered: March 2010
Junior Member
I would like for some code to be called after a certain JButton is created, in this case:

JButton commitButton = new JButton("Commit");

When that button is called, I would like to insert some lines of code right after that. I can do that based on it being a JButton or based on the fact that it is a JButton and the arg is "Commit" right?

Here is what I have so far, but it is syntactically incorrect. Any suggestions?

public aspect HelloAspect {
after() : call("new JButton("Commit")") && !within(HelloAspect)
{
System.out.println("Commit button constructed");
}
}


Also, I am kinda struggling with the AOP lingo, so correct me if I am wrong, but I am asking for help on how to write my pointcut on a JButton initialization join point?
Previous Topic:Two questions about AspectJ possibilities before I dive in
Next Topic:Struggling with how to make a simple poincut
Goto Forum:
  


Current Time: Thu Apr 18 21:15:52 GMT 2024

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

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

Back to the top