/* * ContaCorrente.java * * Created on 23 de Fevereiro de 2006, 08:40 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package banco; /** * * @author Administrador */ public class ContaCorrente { /** Creates a new instance of ContaCorrente */ public ContaCorrente() { } private int numero; public int getNumero() { return numero; } public void setNumero(int numero) { this.numero = numero; } public String toString(){ return Integer.toString( numero ); } }