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 / ExportReportToLayoutParameters.java @ 1608

History | View | Annotate | Download (780 Bytes)

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
import org.gvsig.fmap.dal.swing.report.ReportAction;
12

    
13
/**
14
 *
15
 * @author fdiaz
16
 */
17
public interface ExportReportToLayoutParameters {
18
    
19
    public LayoutReportAction getReportAction();
20

    
21
    public void setReportAction(LayoutReportAction report);
22

    
23
    public FeatureStore getSource();
24

    
25
    public void setSource(FeatureStore source);
26

    
27
    public File getFile();
28

    
29
    public void setFile(File file);
30

    
31
}