Revision 1607 trunk/org.gvsig.app.document.layout2.app/org.gvsig.app.document.layout2.app.mainplugin/src/main/java/org/gvsig/app/project/documents/layout/report/LayoutReportActionImpl.java

View differences:

LayoutReportActionImpl.java
139 139
    private String viewTag;
140 140
    private boolean highlightRecord;
141 141
    private ISymbol highlightSymbol;
142
    private Color fillColor;
143
    private Color lineColor;
142
//    private Color fillColor;
143
//    private Color lineColor;
144 144
    
145 145
    @SuppressWarnings("OverridableMethodCallInConstructor")
146 146
    private LayoutReportActionImpl(ReportActionFactory factory, FeatureStore store, JsonObject json) {
......
155 155
        this.setReportLabel(this.json.getString(LAYOUT_REPORT_LABEL, this.getReportName()));
156 156
        this.highlightRecord = this.json.getBoolean(LAYOUT_REPORT_HIGHLIGHT_RECORD, true);
157 157
        this.highlightSymbol = createSymbol(this.json.getString(LAYOUT_REPORT_HIGHLIGHT_SYMBOL, null));
158
        this.fillColor = new Color(this.json.getInt(LAYOUT_REPORT_FILL_COLOR, Color.WHITE.getRGB()&(0x2F<<24)));
159
        this.lineColor = new Color(this.json.getInt(LAYOUT_REPORT_LINE_COLOR, Color.WHITE.getRGB()));
158
//        this.fillColor = new Color(this.json.getInt(LAYOUT_REPORT_FILL_COLOR, Color.WHITE.getRGB()&(0x2F<<24)));
159
//        this.lineColor = new Color(this.json.getInt(LAYOUT_REPORT_LINE_COLOR, Color.WHITE.getRGB()));
160 160
        this.setCenterToCurrentRow(this.json.getBoolean(LAYOUT_REPORT_CENTER_TO_CURRENT_ROW, true));
161 161
        this.setZoomToCurrentRow(this.json.getBoolean(LAYOUT_REPORT_ZOOM_TO_CURRENT_ROW, true));
162 162
        this.setBufferSize(0.0);

Also available in: Unified diff