331332333334335336337338339
* @param int temperatura */ public void setTemperatura(int temperatura) { this.temperatura = temperatura; fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_TEMPERATURA)); }
351352353354355356357358359
* @param String escalaTemperatura */ public void setEscalaTemperatura(String escalaTemperatura) { this.escalaTemperatura = escalaTemperatura; fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_ESCALA_TEMPERATURA)); }
371372373374375376377378379
* @param String luminosidad */ public void setLuminosidad(String luminosidad) { this.luminosidad = luminosidad; fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_LUMINOSIDAD)); }
400401402403404405406407408
modeloGraficaChange(); } }); fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_MODELO_GRAFICA)); }
427428429430431432433434435
public void tableChanged(TableModelEvent e) { modeloPoblacionChange(); } }); fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_MODELO_POBLACION_GRAFICA)); }
459460461462463464465466467
public void removedComentario(ComentarioEvent ce) { modeloComentarioChange(); } }); fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_MODELO_COMENTARIOS)); }
493494495496497498499500501
int [][]bacteriasDia) {} @Override public void empezadaSimulacion() {} }); fireModeloPoblacionPropertyChange(new PoblacionPropertyEvent(this, CHANGE_MODELO_SIMULACION)); }
211212213214215216217218
/** * Lanza el evento a todos los escuchadores de que el experimento ha cambiado */ private void fireExperimentoChange() { for(ExperimentoListener l : expListener) { l.modificadoExperimento(new ExperimentoEvent(this)); } }
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)); }