Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.geodb.app / org.gvsig.geodb.app.mainplugin / src / main / java / org / gvsig / geodb / vectorialdb / wizard / MyExplorer.java @ 40557

History | View | Annotate | Download (3.03 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 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

    
25
/* gvSIG. Geographic Information System of the Valencian Government
26
*
27
* Copyright (C) 2007-2008 Infrastructures and Transports Department
28
* of the Valencian Government (CIT)
29
*
30
* This program is free software; you can redistribute it and/or
31
* modify it under the terms of the GNU General Public License
32
* as published by the Free Software Foundation; either version 2
33
* of the License, or (at your option) any later version.
34
*
35
* This program is distributed in the hope that it will be useful,
36
* but WITHOUT ANY WARRANTY; without even the implied warranty of
37
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
38
* GNU General Public License for more details.
39
*
40
* You should have received a copy of the GNU General Public License
41
* along with this program; if not, write to the Free Software
42
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
43
* MA  02110-1301, USA.
44
*
45
*/
46

    
47
/*
48
* AUTHORS (In addition to CIT):
49
* ${year} IVER T.I. S.A.   {{Task}}
50
*/
51

    
52
package org.gvsig.geodb.vectorialdb.wizard;
53

    
54
import org.gvsig.fmap.dal.serverexplorer.db.DBServerExplorerParameters;
55

    
56

    
57
/**
58
 * DOCUMENT ME!
59
 *
60
 * @author Vicente Caballero Navarro
61
 */
62
public class MyExplorer {
63
    private DBServerExplorerParameters dbExplorerParameters;
64
    private String name;
65

    
66
    /**
67
     * DOCUMENT ME!
68
     *
69
     * @return DOCUMENT ME!
70
     */
71
    public DBServerExplorerParameters getDbSeverExplorerParameters() {
72
        return dbExplorerParameters;
73
    }
74

    
75
    /**
76
     * DOCUMENT ME!
77
     *
78
     * @param dbExplorerParameters DOCUMENT ME!
79
     */
80
    public void setDbExplorerParameters(
81
        DBServerExplorerParameters dbExplorerParameters) {
82
        this.dbExplorerParameters = dbExplorerParameters;
83
    }
84

    
85
    /**
86
     * DOCUMENT ME!
87
     *
88
     * @return DOCUMENT ME!
89
     */
90
    public String getName() {
91
        return name;
92
    }
93

    
94
    /**
95
     * DOCUMENT ME!
96
     *
97
     * @param name DOCUMENT ME!
98
     */
99
    public void setName(String name) {
100
        this.name = name;
101
    }
102

    
103
        public String toString() {
104
                return getName();
105
        }
106

    
107
}