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 @ 46100

History | View | Annotate | Download (3.75 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.CreateTableFunction;
29
import org.gvsig.expressionevaluator.impl.function.dataaccess.CreateTableStructureFunction;
30
import org.gvsig.expressionevaluator.impl.function.dataaccess.CurrentRowFunction;
31
import org.gvsig.expressionevaluator.impl.function.dataaccess.CurrentStoreFunction;
32
import org.gvsig.expressionevaluator.impl.function.dataaccess.ExistsFunction;
33
import org.gvsig.expressionevaluator.impl.function.dataaccess.ExistsTableFunction;
34
import org.gvsig.expressionevaluator.impl.function.dataaccess.ForeingValueFunction;
35
import org.gvsig.expressionevaluator.impl.function.dataaccess.GeometryFunction;
36
import org.gvsig.expressionevaluator.impl.function.dataaccess.InsertIntoTableFunction;
37
import org.gvsig.expressionevaluator.impl.function.dataaccess.IsSelectedCurrentRowFunction;
38
import org.gvsig.expressionevaluator.impl.function.dataaccess.RowTagFunction;
39
import org.gvsig.expressionevaluator.impl.function.dataaccess.SelectCountFromSelectionFunction;
40
import org.gvsig.expressionevaluator.impl.function.dataaccess.SelectCountFunction;
41
import org.gvsig.expressionevaluator.impl.function.dataaccess.SelectFromSelectionFunction;
42
import org.gvsig.expressionevaluator.impl.function.dataaccess.SelectFunction;
43
import org.gvsig.expressionevaluator.impl.function.dataaccess.SetRowTagFunction;
44
import org.gvsig.expressionevaluator.spi.AbstractSymbolTable;
45

    
46
/**
47
 *
48
 * @author jjdelcerro
49
 */
50
public class DALSymbolTable 
51
        extends AbstractSymbolTable
52
    {   
53

    
54
    public DALSymbolTable() {
55
        super(DALFunctions.SYMBOLTABLE_NAME);
56
        this.initFunctions();
57
    }
58
    
59
    private void initFunctions() {
60
        this.addFunction(new ExistsFunction());
61
        this.addFunction(new ExistsTableFunction());
62
        this.addFunction(new SelectFunction());
63
        this.addFunction(new SelectCountFunction());
64
        this.addFunction(new CurrentRowFunction());
65
        this.addFunction(new CurrentStoreFunction());
66
        this.addFunction(new ForeingValueFunction());
67
        this.addFunction(new IsSelectedCurrentRowFunction());
68
        this.addFunction(new ForeingValueFunction());
69
        this.addFunction(new GeometryFunction());
70
        this.addFunction(new CreateInMemoryTableFunction());
71
        this.addFunction(new InsertIntoTableFunction());
72
        this.addFunction(new RowTagFunction());
73
        this.addFunction(new SetRowTagFunction());
74
        this.addFunction(new CreateTableFunction());
75
        this.addFunction(new CreateTableStructureFunction());
76
        this.addFunction(new SelectFromSelectionFunction());
77
        this.addFunction(new SelectCountFromSelectionFunction());
78
    }     
79
}