Advertisement
ADL_Rodrigo_Silva

Untitled

Dec 20th, 2021
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.15 KB | None | 0 0
  1. package cl.adl.poli;
  2.  
  3. public class Persona {
  4.    
  5.     protected String rut;
  6.     protected String nombre;
  7.     protected boolean presente;
  8.    
  9.    
  10.     /**
  11.      * @param rut
  12.      * @param nombre
  13.      * @param presente
  14.      */
  15.     public Persona(String rut, String nombre, boolean presente) {
  16.         super();  // a mi juicio (y solo mio) es redundante
  17.         this.rut = rut;
  18.         this.nombre = nombre;
  19.         this.presente = presente;
  20.     }
  21.    
  22.    
  23.    
  24.     /**
  25.      * @return the rut
  26.      */
  27.     public String getRut() {
  28.         return rut;
  29.     }
  30.     /**
  31.      * @param rut the rut to set
  32.      */
  33.     public void setRut(String rut) {
  34.         this.rut = rut;
  35.     }
  36.     /**
  37.      * @return the nombre
  38.      */
  39.     public String getNombre() {
  40.         return nombre;
  41.     }
  42.     /**
  43.      * @param nombre the nombre to set
  44.      */
  45.     public void setNombre(String nombre) {
  46.         this.nombre = nombre;
  47.     }
  48.     /**
  49.      * @return the presente
  50.      */
  51.     public boolean isPresente() {
  52.         return presente;
  53.     }
  54.     /**
  55.      * @param presente the presente to set
  56.      */
  57.     public void setPresente(boolean presente) {
  58.         this.presente = presente;
  59.     }
  60.  
  61.  
  62.  
  63.     @Override
  64.     public String toString() {
  65.         return "Persona [rut=" + rut + ", nombre=" + nombre + ", presente=" + presente + "]";
  66.     }
  67.    
  68.    
  69.    
  70.    
  71.    
  72.  
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement