Pabl0o0

Untitled

May 24th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package lab10_final;
  2.  
  3. public class Obiekt {
  4.  
  5. private int value;
  6. private int key;
  7.  
  8. public Obiekt(int key, int value){
  9. this.key = key;
  10. this.value = value;
  11. }
  12.  
  13. public int getValue(){
  14. return value;
  15. }
  16.  
  17. public int getKey(){
  18. return key;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment