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.

JIRA158.java 538B

123456789101112131415161718192021222324252627282930
  1. package test4;
  2. interface JIRA158Intf {
  3. int foo(long[] j, double[] d);
  4. int bar(long j, double d);
  5. }
  6. class JIRA158Impl implements JIRA158Intf {
  7. public int foo(long[] j, double[] d) {
  8. return 7;
  9. }
  10. public int bar(long j, double d) {
  11. return 8;
  12. }
  13. }
  14. public class JIRA158 {
  15. long[] jj;
  16. double[] dd;
  17. long j;
  18. double d;
  19. JIRA158Intf obj;
  20. public JIRA158() {
  21. jj = new long[1];
  22. dd = new double[1];
  23. j = 3L;
  24. d = 3.0;
  25. obj = new JIRA158Impl();
  26. }
  27. }