Statistics
| Revision:

root / trunk / applications / appgvSIG / src / com / iver / cit / gvsig / gui / tables / AndamiWizard.java @ 6877

History | View | Annotate | Download (811 Bytes)

1
package com.iver.cit.gvsig.gui.tables;
2

    
3
import com.iver.andami.ui.mdiManager.IWindow;
4
import com.iver.andami.ui.mdiManager.ViewInfo;
5

    
6
import com.iver.utiles.swing.wizard.Wizard;
7

    
8

    
9
/**
10
 * Vista de andami que contiene un asistente
11
 *
12
 * @author Fernando Gonz?lez Cort?s
13
 */
14
public class AndamiWizard extends Wizard implements IWindow {
15
        /**
16
     * @param backText
17
     * @param nextText
18
     * @param finishText
19
     * @param cancelText
20
     */
21
    public AndamiWizard(String backText, String nextText, String finishText, String cancelText) {
22
        super(backText, nextText, finishText, cancelText);
23
    }
24

    
25
    /**
26
         * @see com.iver.andami.ui.mdiManager.IWindow#getViewInfo()
27
         */
28
        public ViewInfo getViewInfo() {
29
                return new ViewInfo(ViewInfo.ICONIFIABLE | ViewInfo.MAXIMIZABLE |
30
                        ViewInfo.RESIZABLE);
31
        }
32
}