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.

FooAspect.java 180B

12345678910
  1. import java.util.ArrayList;
  2. import java.util.List;
  3. public aspect FooAspect {
  4. public <T> List<T> Foo.createList() {
  5. return new ArrayList<T>();
  6. }
  7. }