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.

SomeCallbacks.java 200B

1234567891011121314
  1. package test;
  2. /**
  3. * Events' callbacks for test.Some.
  4. *
  5. * @author test.SimpleProcessor
  6. */
  7. public final class SomeCallbacks {
  8. public interface OnMethod1 {
  9. void changed(Some emmiter);
  10. }
  11. }