blob: c6af5b2644518454fc5489600cf7765587d8277f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2014 QNX Software Systems and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* QNX Software Systems - Initial API and implementation
* Markus Schorn (Wind River Systems)
*******************************************************************************/
package org.eclipse.cdt.core.testplugin;
import java.util.Collections;
import java.util.Map;
import org.eclipse.cdt.core.parser.ExtendedScannerInfo;
public class TestScannerInfo extends ExtendedScannerInfo {
private static final String[] EMPTY = {};
private String[] fIncludes;
private String[] fLocalIncludes;
private String[] fIncludeFiles;
private String[] fMacroFiles;
private Map<String, String> fDefinedSymbols;
public TestScannerInfo(String[] includes, String[] localIncludes, String[] macroFiles, String[] includeFiles,
Map<String, String> definedSymbols) {
fIncludes = includes;
fLocalIncludes = localIncludes;
fIncludeFiles = includeFiles;
fMacroFiles = macroFiles;
fDefinedSymbols = definedSymbols;
}
@Override
public Map getDefinedSymbols() {
return fDefinedSymbols == null ? Collections.emptyMap() : fDefinedSymbols;
}
@Override
public String[] getIncludePaths() {
return fIncludes == null ? EMPTY : fIncludes;
}
@Override
public String[] getLocalIncludePath() {
return fLocalIncludes;
}
@Override
public String[] getIncludeFiles() {
return fIncludeFiles == null ? EMPTY : fIncludeFiles;
}
@Override
public String[] getMacroFiles() {
return fMacroFiles == null ? EMPTY : fMacroFiles;
}
}