Statistics
| Revision:

root / org.gvsig.legend.aggregate / trunk / org.gvsig.legend.aggregate / org.gvsig.legend.aggregate.app / org.gvsig.legend.aggregate.app.mainplugin / src / main / java / org / gvsig / legend / aggregate / app / AggregateLegendTextExtension.java @ 1667

History | View | Annotate | Download (420 Bytes)

1

    
2
package org.gvsig.legend.aggregate.app;
3

    
4
import org.gvsig.andami.plugins.Extension;
5

    
6

    
7
public class AggregateLegendTextExtension extends Extension {
8

    
9
    @Override
10
    public void initialize() {
11
    }
12

    
13
    @Override
14
    public void execute(String string) {
15
    }
16

    
17
    @Override
18
    public boolean isEnabled() {
19
        return true;
20
    }
21

    
22
    @Override
23
    public boolean isVisible() {
24
        return true;
25
    }
26
    
27
}