01: /*
02: * uDig - User Friendly Desktop Internet GIS client
03: * http://udig.refractions.net
04: * (C) 2004, Refractions Research Inc.
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library 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 GNU
14: * Lesser General Public License for more details.
15: *
16: */
17: package net.refractions.udig.catalog.wfs.internal;
18:
19: import org.eclipse.osgi.util.NLS;
20:
21: public class Messages extends NLS {
22: private static final String BUNDLE_NAME = "net.refractions.udig.catalog.wfs.internal.messages"; //$NON-NLS-1$
23: public static String WFSRegistryWizardPage_label_timeout_tooltip;
24: public static String WFSRegistryWizardPage_label_timeout_text;
25: public static String WFSRegistryWizardPage_label_buffer_tooltip;
26: public static String WFSRegistryWizardPage_label_buffer_text;
27: public static String WFSRegistryWizardPage_label_post_tooltip;
28: public static String WFSRegistryWizardPage_label_get_tooltip;
29: public static String WFSRegistryWizardPage_advanced_tooltip;
30: public static String WFSRegistryWizardPage_advanced_text;
31: public static String WFSRegistryWizardPage_label_password_tooltip;
32: public static String WFSRegistryWizardPage_label_password_text;
33: public static String WFSRegistryWizardPage_label_username_tooltip;
34: public static String WFSRegistryWizardPage_label_username_text;
35: public static String WFSRegistryWizardPage_7;
36: public static String WFSRegistryWizardPage_label_url_tooltip;
37: public static String WFSRegistryWizardPage_label_url_text;
38: public static String UDIGWFSDataStoreFactory_error_usernameAndPassword;
39: public static String WFSRegistryWizardPage_problemConnecting;
40: public static String WFSRegistryWizardPage_serverConnectionProblem;
41: public static String WFSServiceExtension_badService;
42: public static String WFSServiceExtension_protocol;
43: public static String WFSServiceImpl_broken;
44: public static String WFSServiceImpl_task_name;
45: static {
46: // initialize resource bundle
47: NLS.initializeMessages(BUNDLE_NAME, Messages.class);
48: }
49:
50: private Messages() {
51: }
52: }
|