Revision 1608 trunk/org.gvsig.app.document.layout2.app/org.gvsig.app.document.layout2.app.mainplugin/src/main/java/org/gvsig/app/extension/reportfromlayout/ExportReportToLayoutParametersImpl.java

View differences:

ExportReportToLayoutParametersImpl.java
6 6
package org.gvsig.app.extension.reportfromlayout;
7 7

  
8 8
import java.io.File;
9
import org.gvsig.app.project.documents.layout.LayoutDocument;
9
import org.gvsig.app.project.documents.layout.report.LayoutReportAction;
10 10
import org.gvsig.fmap.dal.feature.FeatureStore;
11
import org.gvsig.fmap.dal.swing.report.ReportAction;
12 11

  
13 12
/**
14 13
 *
15 14
 * @author fdiaz
16 15
 */
17 16
public class ExportReportToLayoutParametersImpl implements ExportReportToLayoutParameters {
18
    ReportAction report;
17
    LayoutReportAction report;
19 18
    FeatureStore source;
20 19
    File file;
21 20

  
......
30 29
    }
31 30

  
32 31
    @Override
33
    public ReportAction getReportAction() {
32
    public LayoutReportAction getReportAction() {
34 33
        return this.report;
35 34
    }
36 35

  
37 36
    @Override
38
    public void setReportAction(ReportAction report) {
37
    public void setReportAction(LayoutReportAction report) {
39 38
        this.report = report;
40 39
    }
41 40

  

Also available in: Unified diff