KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > update > internal > scheduler > UpdateSchedulerMessages


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.update.internal.scheduler;
12
13 import org.eclipse.osgi.util.NLS;
14
15 public final class UpdateSchedulerMessages extends NLS {
16
17     private static final String JavaDoc BUNDLE_NAME = "org.eclipse.update.internal.scheduler.UpdateSchedulerResources";//$NON-NLS-1$
18

19     private UpdateSchedulerMessages() {
20         // Do not instantiate
21
}
22
23     public static String JavaDoc SchedulerStartup_day;
24     public static String JavaDoc SchedulerStartup_Monday;
25     public static String JavaDoc SchedulerStartup_Tuesday;
26     public static String JavaDoc SchedulerStartup_Wednesday;
27     public static String JavaDoc SchedulerStartup_Thursday;
28     public static String JavaDoc SchedulerStartup_Friday;
29     public static String JavaDoc SchedulerStartup_Saturday;
30     public static String JavaDoc SchedulerStartup_Sunday;
31     public static String JavaDoc SchedulerStartup_1AM;
32     public static String JavaDoc SchedulerStartup_2AM;
33     public static String JavaDoc SchedulerStartup_3AM;
34     public static String JavaDoc SchedulerStartup_4AM;
35     public static String JavaDoc SchedulerStartup_5AM;
36     public static String JavaDoc SchedulerStartup_6AM;
37     public static String JavaDoc SchedulerStartup_7AM;
38     public static String JavaDoc SchedulerStartup_8AM;
39     public static String JavaDoc SchedulerStartup_9AM;
40     public static String JavaDoc SchedulerStartup_10AM;
41     public static String JavaDoc SchedulerStartup_11AM;
42     public static String JavaDoc SchedulerStartup_12PM;
43     public static String JavaDoc SchedulerStartup_1PM;
44     public static String JavaDoc SchedulerStartup_2PM;
45     public static String JavaDoc SchedulerStartup_3PM;
46     public static String JavaDoc SchedulerStartup_4PM;
47     public static String JavaDoc SchedulerStartup_5PM;
48     public static String JavaDoc SchedulerStartup_6PM;
49     public static String JavaDoc SchedulerStartup_7PM;
50     public static String JavaDoc SchedulerStartup_8PM;
51     public static String JavaDoc SchedulerStartup_9PM;
52     public static String JavaDoc SchedulerStartup_10PM;
53     public static String JavaDoc SchedulerStartup_11PM;
54     public static String JavaDoc SchedulerStartup_12AM;
55     public static String JavaDoc AutomaticUpdatesJob_AutomaticUpdateSearch;
56     public static String JavaDoc AutomaticUpdatesPreferencePage_findUpdates;
57     public static String JavaDoc AutomaticUpdatesPreferencePage_UpdateSchedule;
58     public static String JavaDoc AutomaticUpdatesPreferencePage_findOnStart;
59     public static String JavaDoc AutomaticUpdatesPreferencePage_findOnSchedule;
60     public static String JavaDoc AutomaticUpdatesPreferencePage_downloadOptions;
61     public static String JavaDoc AutomaticUpdatesPreferencePage_searchAndNotify;
62     public static String JavaDoc AutomaticUpdatesPreferencePage_downloadAndNotify;
63     public static String JavaDoc AutomaticUpdatesJob_EclipseUpdates1;
64     public static String JavaDoc AutomaticUpdatesJob_UpdatesAvailable;
65     public static String JavaDoc AutomaticUpdatesJob_EclipseUpdates2;
66     public static String JavaDoc AutomaticUpdatesPreferencePage_at;
67     public static String JavaDoc AutomaticUpdatesJob_UpdatesDownloaded;
68     public static String JavaDoc AutomaticUpdatesJob_Updates;
69
70     static {
71         NLS.initializeMessages(BUNDLE_NAME, UpdateSchedulerMessages.class);
72     }
73 }
Popular Tags