blob: f39b511293881dc4aca497202b8e6f2dc807636a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.synchronizer.internal;
import org.eclipse.sirius.ext.base.I18N;
import org.eclipse.sirius.ext.base.I18N.TranslatableMessage;
/**
* Helper class to obtains translated strings.
*
* @author pcdavid
*/
public final class Messages {
static {
I18N.initializeMessages(Messages.class, SynchronizerPlugin.INSTANCE);
}
// CHECKSTYLE:OFF
@TranslatableMessage
public static String ModelToModelSynchronizer_synchronizationTask;
// CHECKSTYLE:ON
private Messages() {
// Prevents instanciation.
}
}