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.

MyServiceImpl.java 261B

123456789101112131415
  1. public class MyServiceImpl implements MyInterface
  2. {
  3. public String doA(int lololo) {
  4. System.out.println("really did it "+lololo);
  5. return "really got it: "+lololo;
  6. }
  7. public String doB(int lala) {
  8. return doA(lala);
  9. }
  10. }