Statistics
| Revision:

root / branches / v2_0_0_prep / frameworks / _fwAndami / src / org / gvsig / andami / LibraryExtension.java @ 38574

History | View | Annotate | Download (337 Bytes)

1
package org.gvsig.andami;
2

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

    
5
public class LibraryExtension extends Extension {
6

    
7
        public void initialize() {
8
                // Do nothing
9
        }
10

    
11
        public void execute(String actionCommand) {
12
                // Do nothing
13
        }
14

    
15
        public boolean isEnabled() {
16
                return false;
17
        }
18

    
19
        public boolean isVisible() {
20
                return false;
21
        }
22

    
23
}