/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author felix
 */
public class prueba_MiClase {
    public static void main(String args[]){
        MiClase mc = new MiClase();
        mc.setTipo(5);
        
        System.out.println("Dato = " + mc.getTipo());
    }
}
