Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] About join points for local variables.

Dear Folks,
 
After reading the AspectJ FAQ No. 21: "Why can't AspectJ pick out local variables (or array elements or ...)?"
 
I have the following question:
 
What I would like to do is to dynamically maintain an object graph (directed), where nodes represent runtime objects and directed edges denote reference relationships between objects. Apparently an object can refer to other objects not only through its fields, but also through its local variables or parameters. Without join point for local/parameters, how would I accurately obtain the current system state info (in terms of relationships between objects)?
 
Is there any other way that I can achieve the same goal? I appreciate your help!
 
Sunny

Back to the top