Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.60 KB | None | 0 0
  1.     static abstract class Ab {
  2.         final int y;
  3.         public Ab(int x) {y = x;}
  4.         protected abstract int f() throws IOException;
  5.     }
  6.  
  7.     static interface Bb {
  8.         abstract java.util.List<String> list(java.util.List<String> x);
  9.         public abstract int f() throws CloneNotSupportedException;
  10.     }
  11.  
  12.     static class ImplBb extends Ab implements Bb {
  13.         ImplBb(int x) {
  14.             super(x);
  15.         }
  16.         @Override
  17.         public List<String> list(List<String> x) {
  18.             return null;
  19.         }
  20.  
  21.  
  22.         public int f() {
  23.             return 0;
  24.         }
  25.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement