blob: 4bfb771411c75850e1608beffb487811c7633903 [file] [log] [blame]
/**********************************************************************
* This file is part of "Object Teams Development Tooling"-Software
*
* Copyright 2004, 2006 Fraunhofer Gesellschaft, Munich, Germany,
* for its Fraunhofer Institute for Computer Architecture and Software
* Technology (FIRST), Berlin, Germany and Technical University Berlin,
* Germany.
*
* 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
* $Id: SampleMessages.java 23482 2010-02-05 20:16:19Z stephan $
*
* Please visit http://www.eclipse.org/objectteams for updates and contact.
*
* Contributors:
* Fraunhofer FIRST - Initial API and implementation
* Technical University Berlin - Initial API and implementation
**********************************************************************/
package org.eclipse.objectteams.otdt.internal.samples;
import org.eclipse.osgi.util.NLS;
public class SampleMessages extends NLS {
private static final String BUNDLE_NAME = SampleMessages.class.getName();
public static String SamplesAdapter_cannot_run_selected;
public static String SamplesAdapter_unable_to_run;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, SampleMessages.class);
}
private SampleMessages() {
// don't instantiate
}
}