blob: 98bf36b4ffbffc394a554bdcd3750d6ecb34100a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.internal.keys;
import org.eclipse.osgi.util.NLS;
/**
* The KeyAssistMessages class is the class that manages the messages
* used in the KeyAssistDialog.
*
*/
public class KeyAssistMessages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.ui.internal.keys.KeyAssistDialog";//$NON-NLS-1$
public static String NoMatches_Message;
public static String openPreferencePage;
static {
// load message values from bundle file
NLS.initializeMessages(BUNDLE_NAME, KeyAssistMessages.class);
}
}