blob: 85ffcce3fa105e76a0246f7c5a413785b359321b [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;
public String toString() {
StringBuffer buffer = new StringBuffer();
buffer
.append("problems : ") //$NON-NLS-1$
.append(this.numberOfProblems)
.append(" errors : ") //$NON-NLS-1$
.append(this.numberOfErrors)
.append(" warnings : ") //$NON-NLS-1$
.append(this.numberOfWarnings);
return buffer.toString();
}
}