Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. package com.company;
  2.  
  3. public class Elev {
  4. private String nume;
  5. private int varsta;
  6.  
  7. public Elev(String nume, int varsta){
  8. this.nume = nume;
  9. this.varsta = varsta;
  10. }
  11.  
  12. public Elev(){
  13. nume = "NumeGol";
  14. varsta = 0;
  15. }
  16.  
  17. public String getNumeAndVarsta(){
  18. String x = nume + " " + varsta;
  19. return x;
  20. }
  21.  
  22. public String getNume(){
  23. return this.nume;
  24. }
  25.  
  26. public void setNume(String nume){
  27. this.nume = nume;
  28. }
  29.  
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement