Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. static class A<T>{
  2.  
  3. T t;
  4.  
  5. public void set(T t){
  6.  
  7. }
  8.  
  9. public T get(){
  10. return t;
  11. }
  12. }
  13.  
  14. public static void aSetter(A<?> a){
  15. a.set(a.get());
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement