Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.app / org.gvsig.app.mainplugin / src / main / java / org / gvsig / app / project / documents / view / legend / gui / LabelingPanel.java @ 43870

History | View | Annotate | Download (605 Bytes)

1 43870 jjdelcerro
package org.gvsig.app.project.documents.view.legend.gui;
2
3
import org.gvsig.fmap.mapcontext.layers.FLayer;
4
import org.gvsig.fmap.mapcontext.rendering.legend.styling.ILabelingStrategy;
5
6
7
public interface LabelingPanel {
8
9
    public boolean isLabelingEnabled();
10
11
    public void setLabelingEnabled(boolean enabled);
12
13
    public ILabelingStrategyPanel getCurrentLabelingStrategy();
14
15
    public void setCurrentLabelingStrategy(ILabelingStrategyPanel panel);
16
17
    public FLayer getLayer();
18
19
    public void setLayer(FLayer layer);
20
21
    public ILabelingStrategy getLabelingStrategy();
22
}