blob: e843522a8d292b94fd70df27ee057658c93e945b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2018 Obeo.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.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.eef.properties.ui.legacy.internal;
import org.eclipse.eef.properties.ui.legacy.internal.I18N.TranslatableMessage;
/**
* Utility class used to hold the messages of the bundle.
*
* @author sbegaudeau
* @author mbats
*/
public final class Messages {
static {
I18N.initializeMessages(Messages.class, EEFPropertiesUiLegacyPlugin.INSTANCE);
}
// CHECKSTYLE:OFF
@TranslatableMessage
public static String RegistryEventListener_missingAttribute;
@TranslatableMessage
public static String RegistryEventListener_cannotInstantiateExtension;
@TranslatableMessage
public static String Eef2LegacyWrapper_failedToAccessField;
// CHECKSTYLE:ON
/**
* The constructor.
*/
private Messages() {
// Prevents instantiation
}
}