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.

ExecutionMonitor.java 265B

1234567891011
  1. package sub;
  2. public aspect ExecutionMonitor {
  3. public interface MonitoredItem {
  4. int getCount(String eventType, String eventName);
  5. }
  6. public int MonitoredItem.getCount(String eventType, String eventName) {
  7. return 0;
  8. }
  9. }