blob: 4846ba0eff7b0d2f5798ffc915cc476ece4e91e4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.dltk.internal.testing.model;
import org.eclipse.osgi.util.NLS;
public class ModelMessages extends NLS {
private static final String BUNDLE_NAME= "org.eclipse.dltk.internal.testing.model.ModelMessages"; //$NON-NLS-1$
public static String JUnitModel_could_not_read;
public static String JUnitModel_could_not_write;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, ModelMessages.class);
}
private ModelMessages() {
}
}