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

History | View | Annotate | Download (1.1 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.report.LayoutReportAction;
10
import org.gvsig.fmap.dal.feature.FeatureStore;
11

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

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

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

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

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

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

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