/******************************************************************************* * Copyright (c) 20010 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.validation; 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 MissingStartTag = 15; int NamespaceInPI = 8; int NoAttrValue = 5; int SpacesBeforePI = 7; int SpacesBeforeTagName = 6; int Unclassified = 0; int UnknownAttr = 10; int UnknownElement = 9; }