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.

CC.java 316B

12345678910111213141516171819
  1. package business;
  2. public class CC {
  3. public void foo(long docId, String userid) {
  4. }
  5. public static void main(String[] args) {
  6. new CC().foo(12, "hello");
  7. }
  8. }
  9. aspect Asp {
  10. Object around(): execution(* foo(..)) {
  11. return proceed();
  12. }
  13. }