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 / project / documents / layout / report / LayoutReportAction.java @ 1600

History | View | Annotate | Download (1.56 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.project.documents.layout.report;
7

    
8
import org.gvsig.fmap.dal.swing.report.ReportAction;
9

    
10
/**
11
 *
12
 * @author fdiaz
13
 */
14
public interface LayoutReportAction extends ReportAction {
15

    
16
    String LAYOUT_REPORT_BUFFER_SIZE = "bufferSize";
17
    String LAYOUT_REPORT_CENTER_TO_CURRENT_ROW = "centerToCurrentRow";
18
    String LAYOUT_REPORT_DEFAULT_TEMPLATE_NAME = "layout";
19
    String LAYOUT_REPORT_LABEL = "label";
20
    String LAYOUT_REPORT_NAME = "name";
21
    String LAYOUT_REPORT_SELECT_CURRENT_ROW = "selectCurrentRow";
22
    String LAYOUT_REPORT_TEMPLATE_NAME = "templateName";
23
    String LAYOUT_REPORT_TYPE = "type";
24
    String LAYOUT_REPORT_VIEW_TAG = "viewTag";
25
    String LAYOUT_REPORT_USE_INTERNAL_PDF_VIEWER = "useInternalPdfViewer";
26
    String LAYOUT_REPORT_ZOOM_TO_CURRENT_ROW = "zoomToCurrentRow";
27

    
28
    String evaluateDynamicText(String s);
29

    
30
    double getBufferSize();
31

    
32
    boolean isCenterToCurrentRow();
33

    
34
    boolean isSelectCurrentRow();
35

    
36
    boolean isZoomToCurrentRow();
37
    
38
    boolean isUseInternalPdfViewer();
39

    
40
    void setBufferSize(double bufferSize);
41

    
42
    void setCenterToCurrentRow(boolean centerToCurrentRow);
43

    
44
    void setSelectCurrentRow(boolean selectCurrentRow);
45

    
46
    public String getViewTag();
47

    
48
    public void setViewTag(String viewTag);
49
    
50
    void setUseInternalPdfViewer(boolean useInternalPdfViewer);
51

    
52
    void setZoomToCurrentRow(boolean zoomToCurrentRow);
53
    
54
}