blob: 6cac9ad138804c9fdb7af66ac6714a5cedbac5e6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2015 THALES GLOBAL SERVICES.
* 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:
* Thales - initial API and implementation
*******************************************************************************/
package org.eclipse.amalgam.explorer.activity.api.dialog;
import org.eclipse.osgi.util.NLS;
/**
* I18n support.
*
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.amalgam.explorer.activity.api.dialog.messages"; //$NON-NLS-1$
public static String DescriptionDialog_CloseAction_Title;
public static String SelectionDialog_0;
public static String SelectionDialog_1;
public static String SelectionDialog_2;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
// private constructor.
}
}