Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libGeocoding / src / org / gvsig / geocoding / pattern / GeocodingSettings.java @ 28375

History | View | Annotate | Download (1.81 KB)

1 26845 vsanjaime
/* 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
 *
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 2
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
 */
22
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2008 Prodevelop S.L. main development
26
 */
27
28 26928 vsanjaime
package org.gvsig.geocoding.pattern;
29 26845 vsanjaime
30 26928 vsanjaime
import org.gvsig.tools.persistence.Persistent;
31 26845 vsanjaime
32
/**
33 27491 vsanjaime
 * Class Settings. This class has the parameters that define the quality of
34
 * search and the maximun number of results showed in the panel.
35 26845 vsanjaime
 *
36 27064 vsanjaime
 * @author <a href="mailto:jsanz@prodevelop.es"> Jorge Gaspar Sanz Salinas</a>
37
 * @author <a href="mailto:vsanjaime@prodevelop.es"> Vicente Sanjaime Calvet</a>
38 26845 vsanjaime
 */
39 27904 vsanjaime
public interface GeocodingSettings extends Persistent {
40 27057 vsanjaime
41 26845 vsanjaime
        /**
42
         * @return the results
43
         */
44 27904 vsanjaime
        public int getResultsNumber();
45 26845 vsanjaime
46
        /**
47
         * @param results
48
         *            the results to set
49
         */
50 27904 vsanjaime
        public void setResultsNumber(int results);
51 26845 vsanjaime
52
        /**
53
         * @return the quality
54
         */
55 27904 vsanjaime
        public double getScore();
56 26845 vsanjaime
57
        /**
58
         * @param quality
59
         *            the quality to set
60
         */
61 27904 vsanjaime
        public void setScore(double score);
62 26845 vsanjaime
63
}