289290291292293294295296297
* @param String escalaTemperatura */ public void setEscalaTemperatura(String escalaTemperatura) { this.escalaTemperatura = escalaTemperatura; fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_ESCALA_TEMPERATURA)); }
309310311312313314315316317
* @param String luminosidad */ public void setLuminosidad(String luminosidad) { this.luminosidad = luminosidad; fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_LUMINOSIDAD)); }
338339340341342343344345346
modeloGraficaChange(); } }); fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_MODELO_GRAFICA)); }
365366367368369370371372373
public void tableChanged(TableModelEvent e) { modeloPoblacionChange(); } }); fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_MODELO_POBLACION_GRAFICA)); }
397398399400401402403404405
public void removedComentario(ComentarioEvent ce) { modeloComentarioChange(); } }); fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_MODELO_COMENTARIOS)); }
147148149150151152153154
/** * Notifica cuando el modelo de la gráfica cambia */ private void modeloGraficaChange() { fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent( this, CHANGE_MODELO_GRAFICA_COMIDA)); }
155156157158159160161162
/** * Notifica cuando cambia el modelo de la tabla */ private void modeloPoblacionChange() { fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent( this, CHANGE_MODELO_POBLACION_TABLA)); }
163164165166167168169170
/** * Notififca cuando cambia el modelo del comentario */ private void modeloComentarioChange() { fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent( this, CHANGE_MODELO_COMENTARIOS)); }
209210211212213214215216217
* @param nombrePoblacion String nombrePoblacion */ public void setNombrePoblacion(String nombrePoblacion) { this.nombrePoblacion = nombrePoblacion; fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_NOMBRE_POBLACION)); }
229230231232233234235236237
* @param String fecha */ public void setFecha(String fecha) { this.fecha = fecha; fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_FECHA)); }