Revision 8682 org.gvsig.raster/branches/org.gvsig.raster.2.4/org.gvsig.raster/org.gvsig.raster.lib/org.gvsig.raster.lib.legend/org.gvsig.raster.lib.legend.impl/src/main/java/org/gvsig/raster/lib/legend/impl/operations/colorbalancecmy/ColorBalanceCMYOperation.java

View differences:

ColorBalanceCMYOperation.java
39 39
 */
40 40
public class ColorBalanceCMYOperation extends AbstractColorBalanceOperation {
41 41

  
42
    static public String COLOR_INTERPRETATION_PARAM = "color_interpretation";
43 42
    static public String CYAN_PARAM = "cyan";
44 43
    static public String MAGENTA_PARAM = "magenta";
45 44
    static public String YELLOW_PARAM = "yellow";
46 45
    static public String LUMINOSITY_PARAM = "luminosity";
47 46
    static public String COPY_UNPROCESSED_BANDS_PARAM = "copy_unprocessed_bands";
48
    static public String OUTPUT_COLOR_INTERPRETATION_PARAM = "output_color_interpretation";
49 47

  
50
    private ColorInterpretation colorInterpretation;
51 48
    private int cyan;
52 49
    private int magenta;
53 50
    private int yellow;
54 51
    private boolean luminosity;
55 52
    private boolean copyUnprocessedBands;
56
    private ColorInterpretation outputColorInterpretation;
57 53

  
58 54
    /**
59 55
     * @param factory
......
73 69

  
74 70
    @Override
75 71
    public void postProcess() throws BufferOperationException {
76
        // TODO Auto-generated method stub
77

  
72
        super.postProcess();
78 73
    }
79 74

  
80 75
    protected void processRow(Object[] inputRows, List outputRows) {

Also available in: Unified diff