import java.util.ArrayList; import java.util.List; public aspect FooAspect { public List Foo.createList() { return new ArrayList(); } }