Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package lab10_final;
- public class Obiekt {
- private int value;
- private int key;
- public Obiekt(int key, int value){
- this.key = key;
- this.value = value;
- }
- public int getValue(){
- return value;
- }
- public int getKey(){
- return key;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment