Examples of PoblacionPropertyEvent


Examples of practica1.domain.PoblacionPropertyEvent

   
    /**
     * Notifica cuando el modelo de la gráfica cambia
     */
    private void modeloGraficaChange() {
        fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(
             this, CHANGE_MODELO_GRAFICA_COMIDA));  
    }
View Full Code Here

Examples of practica1.domain.PoblacionPropertyEvent

   
    /**
     * Notifica cuando cambia el modelo de la tabla
     */
    private void modeloPoblacionChange() {
        fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(
                this, CHANGE_MODELO_POBLACION_TABLA));
    }
View Full Code Here

Examples of practica1.domain.PoblacionPropertyEvent

   
    /**
     * Notififca cuando cambia el modelo del comentario
     */
    private void modeloComentarioChange() {
        fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(
                this, CHANGE_MODELO_COMENTARIOS));
    }
View Full Code Here

Examples of practica1.domain.PoblacionPropertyEvent

   
    /**
     * Notififca cuando cambia el modelo de la simulación
     */
    private void modeloSimulacionChange() {
        fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(
                this, CHANGE_MODELO_SIMULACION));
    }
View Full Code Here

Examples of practica1.domain.PoblacionPropertyEvent

     * @param nombrePoblacion String nombrePoblacion
     */
    public void setNombrePoblacion(String nombrePoblacion) {
        this.nombrePoblacion = nombrePoblacion;
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_NOMBRE_POBLACION));
    }
View Full Code Here

Examples of practica1.domain.PoblacionPropertyEvent

     * @param String fecha
     */
    public void setFecha(String fecha) {
        this.fecha = fecha;
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_FECHA));
    }
View Full Code Here

Examples of practica1.domain.PoblacionPropertyEvent

     * @param int tamanioPoblacion
     */
    public void setTamanioPoblacion(int tamanioPoblacion) {
        this.tamanioPoblacion = tamanioPoblacion;
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_TAMANIO_POBLACION));
    }
View Full Code Here

Examples of practica1.domain.PoblacionPropertyEvent

     * @param int temperatura
     */
    public void setTemperatura(int temperatura) {
        this.temperatura = temperatura;
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_TEMPERATURA));
    }
View Full Code Here

Examples of practica1.domain.PoblacionPropertyEvent

     * @param String escalaTemperatura
     */
    public void setEscalaTemperatura(String escalaTemperatura) {
        this.escalaTemperatura = escalaTemperatura;
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_ESCALA_TEMPERATURA));
    }
View Full Code Here

Examples of practica1.domain.PoblacionPropertyEvent

     * @param String luminosidad
     */
    public void setLuminosidad(String luminosidad) {
        this.luminosidad = luminosidad;
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_LUMINOSIDAD));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.