blob: 83b6adc207f3f69ce34d3d3373dc74a5fda26c70 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.acceleo.query.runtime;
/**
* Message level used on {@link IValidationMessage}.
*
* @author <a href="mailto:romain.guider@obeo.fr">Romain Guider</a>
*/
public enum ValidationMessageLevel {
/**
* used for simple information message.
*/
INFO,
/**
* used to report potential errors (error that can occur in certain cases but that do not * always occur).
*/
WARNING,
/**
* used to report errors that will most probably occur.
*/
ERROR;
}