Package practica1.controller

Examples of practica1.controller.ControllerPoblacionListener


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


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

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

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

     * @param String luminosidad
     */
    public void setLuminosidad(String luminosidad) {
        this.luminosidad = luminosidad;
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_LUMINOSIDAD));
    }
View Full Code Here

                modeloGraficaChange();
            }
           
        });
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_MODELO_GRAFICA));
    }
View Full Code Here

            public void tableChanged(TableModelEvent e) {
                modeloPoblacionChange();
            }
         });
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_MODELO_POBLACION_GRAFICA));
    }
View Full Code Here

            public void removedComentario(ComentarioEvent ce) {
                modeloComentarioChange();
            }           
        });
       
        fireModeloPoblacionPropertyChange(new
                        PoblacionPropertyEvent(this,
                        CHANGE_MODELO_COMENTARIOS));
    }
View Full Code Here

     * @param nombrePoblacion Nombre de la población
     * @param experimentoPadre Experimento lógico que lo contiene
     */
    public LogicPoblacion(String nombrePoblacion, LogicExperimento experimentoPadre) {
        super(nombrePoblacion);
        super.addPropertyChangeListener(new PoblacionPropertyListener() {

            @Override
            public void propertyChange(PoblacionPropertyEvent propertyChange) {
                firePoblacionChange();
            }
View Full Code Here

     * Cuando sucede la acción nos encargamos de imprimir el experimento principal
     * @param e ActionEvent Evento producido
     */
    @Override
    public void actionPerformed(ActionEvent e) {
        LogicExperimento exp = Controller.getInstance().
                getExperimentoPrincipal();
       
        if(exp != null) {
            try {
                ImprimirExperimento.imprimir(exp);
View Full Code Here

TOP

Related Classes of practica1.controller.ControllerPoblacionListener

Copyright © 2018 www.massapicom. 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.