Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libTools / src / org / gvsig / tools / operations / Operation.java @ 24064

History | View | Annotate | Download (282 Bytes)

1
package org.gvsig.tools.operations;
2

    
3
public interface Operation {
4
        public Object invoke(Object self, OperationContext context)
5
                        throws OperationException;
6

    
7
        public String getName();
8

    
9
        public String getDescription();
10

    
11
        public int getCode() throws OperationNotSupportedException;
12
}