I am studding automatic code generation (AspectJ), and I am confusing about the deference between the following pattern signatures:
- javax..*Model
- javax..*Model+
- javax.*Model
- javax.*Model()
Is this answers correct ?
- Method that end with Model, which defined under javax package.
- Any sub-type of Method that end with Model under javax package.
- Method that end with Model inherited from javax class.
- Method that end with Model inherited from javax class with no argument.
or there is no difference between them ??
Thanks,