blob: 3731a66a22b98348a1d4e397c7b5740a57481884 [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)
*******************************************************************************/
package org.eclipse.modisco.infra.query;
import org.eclipse.osgi.util.NLS;
/**
* @author gdupe
* @deprecated replaced by EMF Facet, cf. https://bugs.eclipse.org/bugs/show_bug.cgi?id=470578
*/
@Deprecated
public final class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.modisco.infra.query.messages"; //$NON-NLS-1$
public static String ReturnTypeValidation_0;
public static String ReturnTypeValidation_noReturnType;
public static String ReturnTypeValidation_wrongReturnType;
static {
// initialize resource bundle
NLS.initializeMessages(Messages.BUNDLE_NAME, Messages.class);
}
private Messages() {
// This class must not instantiated
}
}