Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. package src;
  2.  
  3. abstract class Pracownik {
  4. String imie, nazwisko;
  5.  
  6. private void ustawImie(String x) {
  7. this.imie = x;
  8. }
  9.  
  10. private void ustawNazwisko(String x) {
  11. this.nazwisko = x;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement