Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1.  
  2. public class SEntity
  3. {
  4.  
  5. private int key;
  6. public SEntity(int k)
  7. {
  8. key = k;
  9. }
  10. public int getKey()
  11. {
  12. return key;
  13. }
  14. public void setKey(int k)
  15. {
  16. key = k;
  17. }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement