Revision 42676 trunk/org.gvsig.desktop/org.gvsig.desktop.library/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
package org.gvsig.exportto.swing.spi;
25 25

  
26
import org.cresques.cts.IProjection;
26 27
import org.gvsig.exportto.ExporttoService;
27 28

  
28 29
/**
29 30
 * A Exportto provider.
30
 * 
31
 *
31 32
 * @author gvSIG Team
32 33
 * @version $Id$
33 34
 */
......
43 44
     * A {@link ExporttoSwingProvider} are composed of a set of panels. This
44 45
     * method
45 46
     * is used to retrieve all these panels.
46
     * 
47
     *
47 48
     * @param index
48 49
     *            position of the panel to retrieve.
49 50
     * @return
......
57 58
     */
58 59
    public ExporttoService createExporttoService();
59 60

  
61
    /**
62
     * Sets the target projection to which should be exported
63
     * @param targetProjection
64
     */
65
    public void setTargetProjection(IProjection targetProjection);
66

  
67
    /**
68
     * Informs if it needs to ask for a target projection,
69
     * or if it is not needed or provided through its own wizard panel.
70
     * @return
71
     */
72
    public boolean needsPanelTargetProjection();
73

  
60 74
}

Also available in: Unified diff