Statistics
| Revision:

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

History | View | Annotate | Download (312 Bytes)

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

    
3
/**
4
 * Interfaz a implementar por todas las p?ginas del wizard.
5
 *
6
 * @author Fernando Gonz?lez Cort?s
7
 */
8
public interface Step {
9
        /**
10
         * Recibe la referencia al Wizard del que forman parte
11
         *
12
         * @param w Referencia al wizard
13
         */
14
        public void init(WizardControl w);
15
}