Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libIverUtiles / src / com / iver / utiles / swing / wizard / WizardEvent.java @ 1836

History | View | Annotate | Download (487 Bytes)

1
package com.iver.utiles.swing.wizard;
2

    
3
/**
4
 * Evento con la informaci?n del estado del asistente
5
 *
6
 * @author Fernando Gonz?lez Cort?s
7
 */
8
public class WizardEvent {
9
        public WizardControl wizard;
10
        public int currentStep;
11

    
12
        /**
13
         * Crea un nuevo WizardEvent.
14
         *
15
         * @param w referencia al asistente donde se gener? el evento
16
         * @param currentStep paso actual del asistente
17
         */
18
        public WizardEvent(Wizard w, int currentStep) {
19
                this.wizard = w;
20
                this.currentStep = currentStep;
21
        }
22
}