選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Service.java 198B

12345678
  1. package test;
  2. public class Service implements IService {
  3. public void method(long l) throws Exception {
  4. System.err.println("Original impl of service method, arg " + l);
  5. }
  6. }