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 / ConfigureReportFromLayoutParameters.java @ 1594

History | View | Annotate | Download (1.4 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 org.gvsig.app.project.documents.layout.LayoutDocument;
9
import org.gvsig.fmap.dal.feature.FeatureStore;
10
import org.gvsig.fmap.dal.swing.report.ReportAction;
11

    
12
/**
13
 *
14
 * @author fdiaz
15
 */
16
public interface ConfigureReportFromLayoutParameters {
17
    
18
    public LayoutDocument getLayout();
19

    
20
    public void setLayout(LayoutDocument layout);
21

    
22
    public FeatureStore getSource();
23

    
24
    public void setSource(FeatureStore source);
25

    
26
    public String getIdentifier();
27

    
28
    public void setIdentifier(String identifier);
29

    
30
    public String getLabel();
31

    
32
    public void setLabel(String label);
33

    
34
    public boolean isCenterToCurrentRow();
35

    
36
    public void setCenterToCurrentRow(boolean centerToCurrentRow);
37

    
38
    public boolean isZoomToCurrentRow();
39

    
40
    public void setZoomToCurrentRow(boolean zoomToCurrentRow);
41

    
42
    public double getBufferSize();
43

    
44
    public void setBufferSize(double bufferSize);
45

    
46
    public boolean isSelectCurrentRow();
47

    
48
    public void setSelectCurrentRow(boolean selectCurrentRow);
49

    
50
    public boolean isUseIntervalPdfViewer();
51

    
52
    public void setUseIntervalPdfViewer(boolean useIntervalPdfViewer);
53

    
54
    public String getViewTag();
55

    
56
    public void setViewTag(String tag);
57

    
58
    
59
}