blob: 1d2e038f69a5c4f89868f0334e008b49915c745e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 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.editor.workflow.internal;
import org.eclipse.sirius.ext.base.I18N;
import org.eclipse.sirius.ext.base.I18N.TranslatableMessage;
/**
* Helper class to obtains translated strings.
*
* @author sbegaudeau
*/
public final class Messages {
static {
I18N.initializeMessages(Messages.class, SiriusEditorWorkflowPlugin.INSTANCE);
}
// CHECKSTYLE:OFF
@TranslatableMessage
public static String WorkflowMenuBuilder_label;
@TranslatableMessage
public static String WorkflowMenuBuilder_NewWorkflow_label;
// CHECKSTYLE:ON
private Messages() {
// Prevents instantiation.
}
}