Statistics
| Revision:

root / org.gvsig.complexlegend / trunk / org.gvsig.complexlegend / org.gvsig.complexlegend.lib / org.gvsig.complexlegend.lib.api / src / main / java / org / gvsig / complexlegend / ComplexLegendItem.java @ 3572

History | View | Annotate | Download (421 Bytes)

1
package org.gvsig.complexlegend;
2

    
3
import org.gvsig.fmap.mapcontext.rendering.legend.ILegend;
4

    
5
public interface ComplexLegendItem extends org.gvsig.tools.lang.Cloneable{
6
        
7
        public ILegend getLegend();
8
        public void setLegend(ILegend legend);
9
        
10
        public double getMaxScale();
11
        public void setMaxScale(double maxScale);
12
        
13
        public double getMinScale();
14
        public void setMinScale(double maxScale);
15
        
16
        public String toString();
17
}