blob: 5907bfda18a9edcd943bda02d9cf63eeca687f7a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation and others.
* 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:
* IBM Corporation - initial API and implementation
*
*******************************************************************************/
package org.eclipse.wst.xml.core.internal.document;
import org.eclipse.osgi.util.NLS;
class DOMMessages extends NLS {
private static String BUNDLE_NAME = "org.eclipse.wst.xml.core.internal.document.DOMMessages"; //$NON-NLS-1$
static {
NLS.initializeMessages(BUNDLE_NAME, DOMMessages.class);
}
private DOMMessages() {
}
public static String DOMSTRING_SIZE_ERR;
public static String HIERARCHY_REQUEST_ERR;
public static String INDEX_SIZE_ERR;
public static String INUSE_ATTRIBUTE_ERR;
public static String INVALID_ACCESS_ERR;
public static String INVALID_CHARACTER_ERR;
public static String INVALID_MODIFICATION_ERR;
public static String INVALID_STATE_ERR;
public static String NAMESPACE_ERR;
public static String NO_DATA_ALLOWED_ERR;
public static String NO_MODIFICATION_ALLOWED_ERR;
public static String NOT_FOUND_ERR;
public static String NOT_SUPPORTED_ERR;
public static String SYNTAX_ERR;
public static String TYPE_MISMATCH_ERR;
public static String VALIDATION_ERR;
public static String WRONG_DOCUMENT_ERR;
}