blob: ac77d035a8d26fd1ec0ff50c6fbf778164613c2c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 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.releng.build.tools.convert.dom;
public class ProblemSummaryNode {
public int numberOfProblems;
public int numberOfErrors;
public int numberOfWarnings;
@Override
public String toString() {
final StringBuffer buffer = new StringBuffer();
buffer.append("problems : ") //$NON-NLS-1$
.append(numberOfProblems).append(" errors : ") //$NON-NLS-1$
.append(numberOfErrors).append(" warnings : ") //$NON-NLS-1$
.append(numberOfWarnings);
return buffer.toString();
}
}