|    
			
				14/05/2003, 08:37
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: julio-2001 Ubicación: Barcelona 
						Mensajes: 922
					 Antigüedad: 24 años, 3 meses Puntos: 1 |  | 
  |  Hola, q tal.
 Prueba esto:
 
 public void setTelefono( String unTelefono)
 {
 if (unTelefono.length() != 8)
 {
 System.err.println("Ingrese un telefono válido")
 System.exit(1);
 }
 telefono = unTelefono;
 
 }
 
 saludos
     |