blob: c04f81de36970acbab9bf39d05335e02aaaf0efd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.ui.properties.internal.preferences;
import org.eclipse.sirius.ext.base.I18N;
import org.eclipse.sirius.ext.base.I18N.TranslatableMessage;
import org.eclipse.sirius.ui.properties.internal.SiriusUIPropertiesPlugin;
/**
* Helper class to obtain translated strings.
*
* @author mbats
*/
public final class Messages {
static {
I18N.initializeMessages(Messages.class, SiriusUIPropertiesPlugin.INSTANCE);
}
// CHECKSTYLE:OFF
@TranslatableMessage
public static String SiriusPropertiesPreferencePage_filterGroup;
@TranslatableMessage
public static String SiriusPropertiesPreferencePage_semanticTab;
@TranslatableMessage
public static String SiriusPropertiesPreferencePage_defaultTab;
// CHECKSTYLE:ON
private Messages() {
// Prevents instanciation.
}
}