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.

ConcreteWorld.aj 150B

12345
  1. public aspect ConcreteWorld extends World {
  2. pointcut greeting() :
  3. execution(* Hello.sayWorld(..))
  4. || execution(* Hello.sayHello(..));
  5. }