forked from microsoft/copilot-for-eclipse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessages.java
More file actions
27 lines (20 loc) · 670 Bytes
/
Copy pathMessages.java
File metadata and controls
27 lines (20 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
package com.microsoft.copilot.eclipse.ui.nes;
import org.eclipse.osgi.util.NLS;
/**
* Messages for NES (Next Edit Suggestion) feature.
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "com.microsoft.copilot.eclipse.ui.nes.messages"; //$NON-NLS-1$
public static String bottomBar_jumpMessage;
public static String bottomBar_press;
public static String actionMenu_accept;
public static String actionMenu_reject;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}