blob: 9be37f63c6cc38b2fe24e2a8d08386abc2e07cd0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.compiler.regression;
public class ExpectedProblem {
String fileName;
int id;
String[] arguments;
public ExpectedProblem(String fileName, int id, String[] arguments) {
this.fileName = fileName;
this.id = id;
this.arguments = arguments;
}
}