Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819
  1. package mypackage;
  2. public aspect MyAspect {
  3. pointcut executeMethod(): within(TestClass) && execution(* *(..));
  4. before(): executeMethod() {
  5. System.out.println("Enter "+thisJoinPointStaticPart);
  6. }
  7. after(): executeMethod() {
  8. System.out.println("Leave "+thisJoinPointStaticPart);
  9. }
  10. }
  11. class TestClass {
  12. public static void main(String[] args) { }
  13. }