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 @ 36022

History | View | Annotate | Download (431 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
        /**
11
         * 
12
         */
13
        private static final long serialVersionUID = -9070328984844239279L;
14

    
15
        public NewLayerWizard(ImageIcon logo) {
16
                super(logo);
17
        }
18

    
19
        public abstract NewLayerService getService();
20

    
21
        public abstract void setType(String currentType);
22

    
23
}