Statistics
| Revision:

gvsig-vectorediting / org.gvsig.vectorediting / trunk / org.gvsig.vectorediting / org.gvsig.vectorediting.lib / org.gvsig.vectorediting.lib.spi / src / main / java / org / gvsig / vectorediting / lib / spi / EditingProviderFactory.java @ 2109

History | View | Annotate | Download (2.12 KB)

1 159 llmarques
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright ? 2007-2014 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 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
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23 4 llmarques
 */
24 159 llmarques
25 4 llmarques
package org.gvsig.vectorediting.lib.spi;
26
27
import org.gvsig.tools.service.spi.ProviderFactory;
28
import org.gvsig.vectorediting.lib.api.EditingServiceInfo;
29
30 73 llmarques
/**
31 244 llmarques
 * EditingProviderFactory represents the entity that creates providers and
32
 * parameters.
33
 *
34 73 llmarques
 * @author gvSIG team.
35 244 llmarques
 * @version $Id$
36 73 llmarques
 */
37
public interface EditingProviderFactory extends ProviderFactory {
38 4 llmarques
39 244 llmarques
    /**
40
     * Name of feature store field
41
     */
42 159 llmarques
    public static final String FEATURE_STORE_FIELD = "featureStore";
43 73 llmarques
44 244 llmarques
    /**
45
     * Name of provider name field
46
     */
47 159 llmarques
    public static final String PROVIDER_NAME_FIELD = "providerName";
48 322 llmarques
49
    /**
50
     * Name of MapContext field
51
     */
52
    public static final String MAPCONTEXT_FIELD = "mapContext";
53 73 llmarques
54 159 llmarques
    /**
55
     * Gets read only information about a service such as if creates new
56
     * geometries, name, description, supported types, mouse icon, parameters
57 244 llmarques
     * and information about its parameters.
58 227 llmarques
     *
59 159 llmarques
     * @param serviceName
60
     *            service name to get the service information
61
     * @return An <code>EditingServiceInfo</code> object that contains the
62
     *         information. {@link EditingServiceInfo}.
63
     */
64
    public EditingServiceInfo getServiceInfo();
65 4 llmarques
}