Guest User

Untitled

a guest
Apr 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. interface anyInterface<T> {
  2. Collection<T> getCollection();
  3. }
  4. class anyClass implements anyInterface<Integer> {
  5. @Override
  6. public ArrayList<Integer> getCollection() {
  7. ...
  8. }
  9. }
Add Comment
Please, Sign In to add comment