Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7ddfa60d59bfab4342dae85cd25002b053b0900a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*******************************************************************************
 * Copyright (c) 2006, 2007 QNX Software Systems 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:
 * QNX - Initial API and implementation
 * Markus Schorn (Wind River Systems)
 * IBM Corporation
 *******************************************************************************/
 
package org.eclipse.cdt.internal.core.indexer;

import java.util.List;

import org.eclipse.cdt.core.dom.ICodeReaderFactory;

/**
 * A task for index updates.
 * 
 * <p>
 * <strong>EXPERIMENTAL</strong>. This class or interface has been added as
 * part of a work in progress. There is no guarantee that this API will work or
 * that it will remain the same. Please do not use this API without consulting
 * with the CDT team.
 * </p>
 * 
 * @since 4.0
 */
public class StandaloneFullIndexerTask extends StandaloneIndexerTask {
	public StandaloneFullIndexerTask(StandaloneFullIndexer indexer, List added,
			List changed, List removed) {
		super(indexer, added, changed, removed, false);
	}

	@Override
	protected ICodeReaderFactory createReaderFactory() {
		return ((StandaloneFullIndexer)fIndexer).getCodeReaderFactory();
	}
}

Back to the top