10.05.2014 Views

programación i - Universidad ORT Uruguay

programación i - Universidad ORT Uruguay

programación i - Universidad ORT Uruguay

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

134 Programación I<br />

Ilustración 21 HaceTodo<br />

Como posible implementación tenemos:<br />

//CLASE PERSONA:<br />

package hacetodo;<br />

public class Persona {<br />

private String nombre;<br />

public Persona() {<br />

this.setNombre( "Sin nombre");<br />

}<br />

public java.lang.String getNombre() {<br />

return nombre;<br />

}<br />

}<br />

public void setNombre(String unNombre) {<br />

nombre = unNombre;<br />

}<br />

@Override<br />

public String toString() {<br />

return this.getNombre();<br />

}

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!