Фрагмент AOP: это Aspectj? - PullRequest
       1

Фрагмент AOP: это Aspectj?

0 голосов
/ 03 ноября 2011

Я обнаружил следующий фрагмент об АОП.Может кто-нибудь сказать мне, что это за язык программирования?

  public aspect MyAspect
    {
      // Define a pointcut matched by all methods in the application whose name begins with
      // Get and accepting no arguments. (There are many other ways to define criteria.)
      public pointcut allGetMethods ():
             call (* Get*() );

      // Define an advice to run before any join points that matches the specified pointcut.
      before(): allGetMethods()
      {
        // Do your cross-cutting concern stuff here
        // for example, log about the method being executed
        .
        .
        .
      }
    }

это AspectJ?или нет такого языка?

1 Ответ

2 голосов
/ 03 ноября 2011

Да, это AspectJ .

...