blob: 9e91217cb3033fcf2b3ded0e78d363bc14f79bd8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2009 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.validation.internal;
/**
* An immutable object that holds a summary of the validation.
* @author karasiuk
*
*/
public final class ValidationResultSummary {
private final int _error;
private final int _warning;
private final int _info;
public ValidationResultSummary(int error, int warning, int info){
_error = error;
_warning = warning;
_info = info;
}
public int getSeverityError() {
return _error;
}
public int getSeverityWarning() {
return _warning;
}
public int getSeverityInfo() {
return _info;
}
}