Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / org.gvsig.newlayer / org.gvsig.newlayer.lib / org.gvsig.newlayer.lib.api / src / main / java / org / gvsig / newlayer / NewLayerWizard.java @ 37891

History | View | Annotate | Download (436 Bytes)

1
package org.gvsig.newlayer;
2

    
3
import javax.swing.ImageIcon;
4

    
5
import org.gvsig.gui.beans.wizard.WizardPanelWithLogo;
6

    
7

    
8
public abstract class NewLayerWizard extends WizardPanelWithLogo{
9

    
10
        private static final long serialVersionUID = -9070328984844239279L;
11

    
12
        public NewLayerWizard(ImageIcon logo) {
13
                super(logo);
14
        }
15

    
16
        public abstract NewLayerService getService();
17

    
18
    public abstract void setType(NewLayerProviderFactory currentType);
19

    
20
}