Advertisement
SrJefers_Loading

applPRI

Aug 17th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1.  
  2. package miniproyectoapplet;
  3.  
  4. public class principal {
  5. //--->Datos principales
  6. String nombrepersona, nombreanimal;
  7. public String getNP(){
  8. return this.nombrepersona;
  9. }
  10. public void setNP(String nombrepersona){
  11. this.nombrepersona = nombrepersona;
  12. }
  13. public String getNA(){
  14. return nombreanimal;
  15. }
  16. public void setNA(String nombreanimal){
  17. this.nombreanimal = nombreanimal;
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement