Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.labeling.app / org.gvsig.labeling.app.mainplugin / src / main / java / org / gvsig / labeling / label / IGeneralLabelingStrategy.java @ 44534

History | View | Annotate | Download (659 Bytes)

1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.labeling.label;
7

    
8
import org.gvsig.fmap.mapcontext.rendering.legend.styling.ILabelingStrategy;
9
import org.gvsig.fmap.mapcontext.rendering.symbols.CartographicSupport;
10

    
11
/**
12
 *
13
 * @author osc
14
 */
15
public interface IGeneralLabelingStrategy extends ILabelingStrategy, Cloneable,
16
        CartographicSupport {
17

    
18
    String NAME = "GeneralLabelingStrategy";
19

    
20
    public boolean isAllowingOverlap();
21

    
22
    public void setAllowOverlapping(boolean allowOverlapping);
23
}