All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jdt.core.index.JavaIndexer Maven / Gradle / Ivy

/*******************************************************************************
 * Copyright (c) 2011 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.jdt.core.index;

import java.io.IOException;

import org.eclipse.jdt.core.search.SearchEngine;
import org.eclipse.jdt.internal.core.search.indexing.DefaultJavaIndexer;

/**
 * {@link JavaIndexer} provides functionality to generate index files which can be used by the JDT {@link SearchEngine}.
 * The generated index files can be used as a classpath attribute for the particular classpath entry.
 * 
 * 

The search engine indexes all the elements referred in the classpath entries of the project into * index files. These index files are used to search the elements faster. Indexing for bigger jars could * take some time. To avoid this time, one can generate the index file and specify it when the jar is added * to the classpath of the project.

* * @since 3.8 */ public final class JavaIndexer { /** * Generates the index file for the specified jar. * @param pathToJar The full path to the jar that needs to be indexed * @param pathToIndexFile The full path to the index file that needs to be generated * @throws IOException if the jar is not found or could not write into the index file * @since 3.8 */ public static void generateIndexForJar(String pathToJar, String pathToIndexFile) throws IOException { new DefaultJavaIndexer().generateIndexForJar(pathToJar, pathToIndexFile); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy