Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [ajdt-dev] Ctrl-Shift-G doesn't seem to search .aj files for references

> Does AJDT not integrate with search, or is this a bug?
Yes and yes.

The problem is with JDT's indexing system.  The search runs off of an
index of the Java model that is stored on disk.  Unfortunately, the it
is the Java parser that is used to create the index.  So, when an
aspect comes along, the Java parser assumes that this is an error and
ignores the compilation unit.

We are currently discussing the feasibility of using an aspect to
dynamically choose an aspectj parser over the Java parser.  This would
be for the AJDT 1.6 time frame.


Back to the top