Statistics
| Revision:

svn-gvsig-desktop / tags / v10_RC2c / applications / appgvSIG / src / com / iver / cit / gvsig / project / AbstractContextMenuAction.java @ 8745

History | View | Annotate | Download (521 Bytes)

1
package com.iver.cit.gvsig.project;
2

    
3
public abstract class AbstractContextMenuAction implements IContextMenuAction {
4

    
5
        public boolean isVisible(Object item, Object[] selectedItems) {
6
                return true;
7
        }
8

    
9
        public boolean isEnabled(Object item, Object[] selectedItems) {
10
                return true;
11
        }
12

    
13
        public String getGroup() {
14
                return "general";
15
        }
16

    
17
        public int getGroupOrder() {
18
                return 50;
19
        }
20
        
21
        public int getOrder() {
22
                return 0;
23
        }
24

    
25
        public String getDescription() {
26
                // TODO Auto-generated method stub
27
                return null;
28
        }
29

    
30
        
31
}