Hello,
I am still very new to AspectJ, but I have got a question about the use of
wildcards.
I know that the wildcard ".." stands for as many symbols as needed
including commas and dots, so that it can stand for severals arguments of
a method or for hierarchy of packages (e.g. "in banking..entities.*" it
means that between banking and entities there can still be some steps in
the hierarchy)
But if ".." stands for any characters, this would mean that classes in a
package like bankingxy.blabla.xyentities belong to those classes that are
meant by "banking..entities.*"
What can I do when I want to restrict it to
banking.(((some other packages in the hierarchy))).entities.* ??
I guess I cannot use four dots. Is it possible to use this
"banking.(..).entities.*" ??