Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / frameworks / _fwAndami / src / org / gvsig / andami / plugins / IExtensionQueryByAction.java @ 38564

History | View | Annotate | Download (206 Bytes)

1
package org.gvsig.andami.plugins;
2

    
3
public interface IExtensionQueryByAction {
4

    
5
        public boolean canQueryByAction(); 
6
        
7
        public boolean isEnabled(String action);
8
        public boolean isVisible(String action);
9
        
10
}