Transitive reference

Hi!

Is there any way to create a transitive references? 

For example, look at the code:

<loader id="personsDl">
...
</loader>
</filter id="filter"
applyTo="personsTable"
dataLoader="personsDl">

...

filter's dataLoader attribute references loader tag. When I start rename refactoring of personsDl it renames both in filter and loader tag.

But in some cases, the <loader id="personsDl"> may have reference to following field:

@Inject
private CollectionLoader<Person> personsDl;

So filter tag references loader tag, and loader tag references personsDl field. 

In this situation only two of the elements are renamed, depending on element I start refactoring from.

 

Is there any way to handle this 'transitive' references renaming?

0

Please sign in to leave a comment.