Statistics
| Revision:

root / branches / v2_0_0_prep / applications / appgvSIG / src / org / gvsig / app / project / documents / contextMenu / actions / AbstractClipboardDocumentContextMenuAction.java @ 29596

History | View | Annotate | Download (626 Bytes)

1
package org.gvsig.app.project.documents.contextMenu.actions;
2

    
3
import java.util.Map;
4

    
5
import org.gvsig.app.project.documents.contextMenu.AbstractDocumentContextMenuAction;
6

    
7

    
8
public abstract class AbstractClipboardDocumentContextMenuAction extends
9
                AbstractDocumentContextMenuAction {
10

    
11
        public int getGroupOrder() {
12
                return 0;
13
        }
14

    
15

    
16
        public String getGroup() {
17
                return "ClipboardActions";
18
        }
19

    
20

    
21
        public Object create() {
22
                return this;
23
        }
24

    
25
        public Object create(Object[] args) {
26
                // TODO Auto-generated method stub
27
                return this;
28
        }
29

    
30
        public Object create(Map args) {
31
                // TODO Auto-generated method stub
32
                return this;
33
        }
34

    
35
}