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 / VectorComplexLegend.java @ 86

History | View | Annotate | Download (529 Bytes)

1
package org.gvsig.complexlegend;
2

    
3
import java.util.List;
4

    
5
import org.gvsig.fmap.mapcontext.rendering.legend.IClassifiedLegend;
6
import org.gvsig.fmap.mapcontext.rendering.legend.IVectorLegend;
7

    
8
public interface VectorComplexLegend extends IVectorLegend, IClassifiedLegend{
9

    
10
        public List<ComplexLegendItem> getLegends();
11
        
12
        public boolean add(ComplexLegendItem legend);
13
        public boolean remove(ComplexLegendItem legend);
14
        
15
        public boolean isOverlapped(ComplexLegendItem legend);
16
        public ComplexLegendItem getLegend(double scale);
17
}