blob: 84a1cd7c03f0ef9a84214b122253b5ccff13b2ef [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 Google, Inc 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:
* Stefan Xenos (Google) - Initial implementation
*******************************************************************************/
package org.eclipse.jdt.core.tests.nd.indexer;
import java.io.File;
import org.eclipse.jdt.core.tests.nd.DatabaseTestUtil;
import org.eclipse.jdt.internal.core.nd.db.ChunkCache;
import org.eclipse.jdt.internal.core.nd.java.JavaIndex;
public class JavaIndexTestUtil {
public static JavaIndex createTempIndex(String id) {
File dbName = DatabaseTestUtil.getTempDbName(id);
return JavaIndex.getIndex(JavaIndex.createNd(dbName, new ChunkCache()));
}
}