/******************************************************************************* * Copyright (c) 2012 Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is 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: * Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.cdi.seam.config.core.validation; import org.eclipse.osgi.util.NLS; public class SeamConfigValidationMessages { private static final String BUNDLE_NAME = SeamConfigValidationMessages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$ public static String UNRESOLVED_TYPE; public static String UNRESOLVED_MEMBER; public static String UNRESOLVED_FIELD; public static String UNRESOLVED_METHOD; public static String UNRESOLVED_CONSTRUCTOR; public static String ANNOTATION_EXPECTED; public static String INLINE_BEAN_TYPE_MISMATCH; public static String TYPE_IS_ABSTRACT; public static String NO_BEAN_CONSTRUCTOR; static { NLS.initializeMessages(BUNDLE_NAME, SeamConfigValidationMessages.class); } }