/******************************************************************************* * Copyright (c) 2011, 2012 Anton Gorenkov. * 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: * Anton Gorenkov - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.testsrunner.internal.model; import org.eclipse.osgi.util.NLS; public class ModelMessages extends NLS { private static final String BUNDLE_NAME = "org.eclipse.cdt.testsrunner.internal.model.ModelMessages"; //$NON-NLS-1$ public static String TestingSession_finished_status; public static String TestingSession_name_format; public static String TestingSession_starting_status; public static String TestingSession_stopped_status; static { // initialize resource bundle NLS.initializeMessages(BUNDLE_NAME, ModelMessages.class); } private ModelMessages() { } }