blob: fffc84b7ec5db2f24e1869594ac22f36ed542b9e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Gregoire DUPE (Mia-Software)
* Nicolas Bros (Mia-Software)
*******************************************************************************/
package org.eclipse.modisco.infra.query.editor;
import org.eclipse.osgi.util.NLS;
/**
* @deprecated replaced by EMF Facet, cf. https://bugs.eclipse.org/bugs/show_bug.cgi?id=470578
*/
@Deprecated
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.modisco.infra.query.editor.messages"; //$NON-NLS-1$
public static String QueryActionBarContributor_ShowIn;
public static String LoadMetaModelResourceAction_0;
public static String QueryEditor_25;
public static String QueryEditor_Edition;
public static String QueryEditor_jobRefreshErrorMarkers;
public static String QueryModelWizard_queryInNonMoDiscoProject;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
// non instantiable
}
}