Statistics
| Revision:

root / trunk / extensions / extCAD / src / com / iver / cit / gvsig / project / documents / table / IOperator.java @ 10254

History | View | Annotate | Download (439 Bytes)

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

    
3
import org.apache.bsf.BSFException;
4
import org.apache.bsf.BSFManager;
5

    
6
/**
7
 * @author Vicente Caballero Navarro
8
 */
9
public interface IOperator {
10
        int NUMBER = 0;
11
        int STRING = 1;
12
        int DATE = 2;
13
        public String addText(String s);
14
        public String toString();
15
        public void eval(BSFManager interpreter) throws BSFException ;
16
        public boolean isEnable();
17
        public void setType(int fieldType);
18
}