blob: 4d0008bb7aac91256f64c2dead5ce1543ca9bd37 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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
* Jens Lukowski/Innoopract - initial renaming/restructuring
*
*******************************************************************************/
package org.eclipse.wst.xml.ui.internal.correction;
public interface ProblemIDsXML {
int AttrsInEndTag = 3;
int AttrValueNotQuoted = 13;
int EmptyTag = 1;
int InvalidAttrValue = 11;
int MissingAttrValue = 4;
int MissingClosingBracket = 14;
int MissingEndTag = 2;
int MissingRequiredAttr = 12;
int NamespaceInPI = 8;
int NoAttrValue = 5;
int SpacesBeforePI = 7;
int SpacesBeforeTagName = 6;
int Unclassified = 0;
int UnknownAttr = 10;
int UnknownElement = 9;
}