Revision 1850 org.gvsig.legend.aggregate/trunk/org.gvsig.legend.aggregate/org.gvsig.legend.aggregate.swing/org.gvsig.legend.aggregate.swing.impl/src/main/java/org/gvsig/legend/aggregate/swing/impl/DefaultAggregateLegendEditor.java

View differences:

DefaultAggregateLegendEditor.java
47 47
    private AggregateLegend legend;
48 48
    private FLayer layer;
49 49
    private ILabelStyle style;
50
    private final ColorChooserController outlineColor;
51
    private final ColorChooserController fillColor;
52
    private final ColorChooserController textColor;
50
    private ColorChooserController outlineColor;
51
    private ColorChooserController fillColor;
52
    private ColorChooserController textColor;
53 53

  
54 54
    public DefaultAggregateLegendEditor() {
55 55
        this.legendClass = AggregateLegendLocator.getAggregateLegendManager().getLegendClass();
56
        this.initComponents();
57
    }
58
    
59
    private void initComponents() {
56 60
        this.btnStyle.addActionListener(new ActionListener() {
57 61
            @Override
58 62
            public void actionPerformed(ActionEvent e) {
......
153 157
            this.txtStyle.setText(this.legend.getLabelStyle().getDescription());
154 158
        }
155 159
        Operation operation = this.legend.getOperation();
156
        this.txtOutlineColor.setText(operation.getAditionalValue()==null? "":operation.getAditionalValue());
160
        this.txtOperationValue.setText(operation.getAditionalValue()==null? "":operation.getAditionalValue());
157 161
        if( this.layer instanceof FLyrVect ) {
158 162
            FeatureStore store = ((FLyrVect)this.layer).getFeatureStore();
159 163
            try {

Also available in: Unified diff