Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.impl / src / main / java / org / gvsig / expressionevaluator / impl / symboltable / DALSymbolTable.java @ 44925

History | View | Annotate | Download (3.16 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2020 gvSIG Association.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 3
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
package org.gvsig.expressionevaluator.impl.symboltable;
25

    
26
import org.gvsig.expressionevaluator.impl.DALFunctions;
27
import org.gvsig.expressionevaluator.impl.function.dataaccess.CreateInMemoryTableFunction;
28
import org.gvsig.expressionevaluator.impl.function.dataaccess.CurrentRowFunction;
29
import org.gvsig.expressionevaluator.impl.function.dataaccess.CurrentStoreFunction;
30
import org.gvsig.expressionevaluator.impl.function.dataaccess.ExistsFunction;
31
import org.gvsig.expressionevaluator.impl.function.dataaccess.ExistsTableFunction;
32
import org.gvsig.expressionevaluator.impl.function.dataaccess.ForeingValueFunction;
33
import org.gvsig.expressionevaluator.impl.function.dataaccess.GeometryFunction;
34
import org.gvsig.expressionevaluator.impl.function.dataaccess.InsertIntoTableFunction;
35
import org.gvsig.expressionevaluator.impl.function.dataaccess.IsSelectedCurrentRowFunction;
36
import org.gvsig.expressionevaluator.impl.function.dataaccess.RowTagFunction;
37
import org.gvsig.expressionevaluator.impl.function.dataaccess.SelectCountFunction;
38
import org.gvsig.expressionevaluator.impl.function.dataaccess.SelectFunction;
39
import org.gvsig.expressionevaluator.impl.function.dataaccess.SetRowTagFunction;
40
import org.gvsig.expressionevaluator.spi.AbstractSymbolTable;
41

    
42
/**
43
 *
44
 * @author jjdelcerro
45
 */
46
public class DALSymbolTable 
47
        extends AbstractSymbolTable
48
    {   
49

    
50
    public DALSymbolTable() {
51
        super(DALFunctions.SYMBOLTABLE_NAME);
52
        this.initFunctions();
53
    }
54
    
55
    private void initFunctions() {
56
        this.addFunction(new ExistsFunction());
57
        this.addFunction(new ExistsTableFunction());
58
        this.addFunction(new SelectFunction());
59
        this.addFunction(new SelectCountFunction());
60
        this.addFunction(new CurrentRowFunction());
61
        this.addFunction(new CurrentStoreFunction());
62
        this.addFunction(new ForeingValueFunction());
63
        this.addFunction(new IsSelectedCurrentRowFunction());
64
        this.addFunction(new ForeingValueFunction());
65
        this.addFunction(new GeometryFunction());
66
        this.addFunction(new CreateInMemoryTableFunction());
67
        this.addFunction(new InsertIntoTableFunction());
68
        this.addFunction(new RowTagFunction());
69
        this.addFunction(new SetRowTagFunction());
70
    }    
71
}