Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_daldb / src / org / gvsig / fmap / dal / DALDbLibrary.java @ 30580

History | View | Annotate | Download (1.34 KB)

1 25096 jmvivo
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5 26790 jmvivo
*
6 25096 jmvivo
* 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 2
9
* of the License, or (at your option) any later version.
10 26790 jmvivo
*
11 25096 jmvivo
* 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 26790 jmvivo
*
16 25096 jmvivo
* 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 26790 jmvivo
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 25096 jmvivo
* MA  02110-1301, USA.
20 26790 jmvivo
*
21 25096 jmvivo
*/
22
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2008 IVER T.I. S.A.   {{Task}}
26
*/
27 26790 jmvivo
28 25096 jmvivo
/**
29 26790 jmvivo
 *
30 25096 jmvivo
 */
31
package org.gvsig.fmap.dal;
32
33 30580 cordinyana
import org.gvsig.tools.library.LibraryException;
34
import org.gvsig.tools.library.impl.BaseLibrary;
35 25096 jmvivo
36
/**
37 29406 jmvivo
 * Initialize DAL data base basic support
38
 *
39 25096 jmvivo
 * @author jmvivo
40 29406 jmvivo
 *
41 25096 jmvivo
 */
42
public class DALDbLibrary extends BaseLibrary {
43
44 30580 cordinyana
        @Override
45
        protected void doInitialize() throws LibraryException {
46 26790 jmvivo
        }
47 27753 jmvivo
48 30580 cordinyana
        @Override
49
        protected void doPostInitialize() throws LibraryException {
50 27753 jmvivo
        }
51 25096 jmvivo
}