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

/**
 *
 * @author felix
 */
public class MiClase {
    private int tipo;
    
    public void setTipo(int untipo) {
        tipo = untipo;
    }
    
    public int getTipo() {
        return tipo;
    }
    
         
}
