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.

Asp.java 207B

12345678910
  1. package com;
  2. aspect Asp {
  3. before(String[] ss): execution(* *(..)) && args(ss) {
  4. }
  5. before(int[] ss): execution(* *(..)) && args(ss) {
  6. }
  7. before(float[][] ss): execution(* *(..)) && args(ss) {
  8. }
  9. }