blob: c648c0b7c14f5059084cd2ce5aaf02d3dfffc68c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2011 David Green and others.
* 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:
* David Green - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.internal.wikitext.ui.editor.validation;
import org.eclipse.osgi.util.NLS;
/**
* @author David Green
*/
class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.mylyn.internal.wikitext.ui.editor.validation.messages"; //$NON-NLS-1$
public static String AnnotationMarkupValidator_clearingProblems;
public static String DocumentRegionValidator_validating;
public static String DocumentRegionValidator_validation;
public static String ResourceMarkerMarkupValidator_clearingMarkers;
public static String ResourceMarkerMarkupValidator_creatingMarkers;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}