Revision 37780 branches/v2_0_0_prep/libraries/org.gvsig.exportto/org.gvsig.exportto.swing/org.gvsig.exportto.swing.spi/src/main/java/org/gvsig/exportto/swing/spi/ExporttoSwingProvider.java

View differences:

ExporttoSwingProvider.java
23 23

  
24 24
import org.gvsig.exportto.ExporttoService;
25 25

  
26

  
27 26
/**
28 27
 * A Exportto provider.
29 28
 * 
......
31 30
 * @version $Id$
32 31
 */
33 32
public interface ExporttoSwingProvider {
34
    
33

  
35 34
    /**
36 35
     * @return
37
     *          the number of panels that are used por this provider.
36
     *         the number of panels that are used por this provider.
38 37
     */
39 38
    public int getPanelCount();
40
    
39

  
41 40
    /**
42
     * A {@link ExporttoSwingProvider} are composed of a set of panels. This method
41
     * A {@link ExporttoSwingProvider} are composed of a set of panels. This
42
     * method
43 43
     * is used to retrieve all these panels.
44
     * 
44 45
     * @param index
45
     *      position of the panel to retrieve.
46
     *            position of the panel to retrieve.
46 47
     * @return
47
     *      the panel that is in a concrete position.
48
     *         the panel that is in a concrete position.
48 49
     */
49 50
    public ExporttoSwingProviderPanel getPanelAt(int index);
50
    
51

  
51 52
    /**
52
     * @return a {@link ExporttoService} that has been initialized this 
53
     * the values typed in the panels returned by this service.
53
     * @return a {@link ExporttoService} that has been initialized this
54
     *         the values typed in the panels returned by this service.
54 55
     */
55 56
    public ExporttoService createExporttoService();
56
    
57

  
57 58
}

Also available in: Unified diff