Posted by metalklesk on Sun 24 May 04:33
report abuse | download | new post
- /*
- * To change this template, choose Tools | Templates
- * and open the template in the editor.
- */
- package org.modelo;
- /**
- *
- * @author metalklesk
- */
- public class Usuario {
- private int id;
- private String user;
- private String passwd;
- private boolean activo;
- public boolean isActivo() {
- return activo;
- }
- public void setActivo(boolean activo) {
- this.activo = activo;
- }
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- return passwd;
- }
- this.passwd = passwd;
- }
- return user;
- }
- this.user = user;
- }
- }
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.