You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MyAspect.aj 339B

123456789101112
  1. package test;
  2. import java.util.List;
  3. public privileged aspect MyAspect {
  4. void Demo.foo(java.util.List<String> x) { }
  5. declare @method: (void Demo.foo(..): @Deprecated;
  6. declare @type: Demo: @Deprecated;
  7. //declare @field: (int Demo.x): @Deprecated;
  8. //declare @constructor: (public Demo.new(int)): @Deprecated;
  9. }