Statistics
| Revision:

svn-document-layout / trunk / org.gvsig.app.document.layout2.app / org.gvsig.app.document.layout2.app.mainplugin / src / main / java / org / gvsig / app / extension / reportfromlayout / ExportReportToLayoutParametersImpl.java @ 1594

History | View | Annotate | Download (1.13 KB)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.app.extension.reportfromlayout;
7

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

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

    
22
    @Override
23
    public FeatureStore getSource() {
24
        return source;
25
    }
26

    
27
    @Override
28
    public void setSource(FeatureStore source) {
29
        this.source = source;
30
    }
31

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

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

    
42
    @Override
43
    public File getFile() {
44
        return this.file;
45
    }
46

    
47
    @Override
48
    public void setFile(File file) {
49
        this.file = file;
50
    }
51
    
52
}