blob: 077e37e425cdad2e470a778d81f9d66b5b4181d9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2019 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.internal.core.model.index;
import org.eclipse.core.runtime.IPath;
import org.eclipse.rcptt.core.model.IQ7NamedElement;
import org.eclipse.rcptt.core.model.IQ7Project;
import org.eclipse.rcptt.internal.core.jobs.IJob;
public interface IProjectIndexer {
public interface Internal extends IProjectIndexer {
void indexNamedElement(Index index, IQ7NamedElement change);
void request(IJob request);
void requestIfNotWaiting(IJob job);
Index getProjectIndex(IQ7Project project);
IndexManager getIndexManager();
}
void indexProject(IQ7Project project);
void removeNamedElement(IQ7Project project, String path);
void removeProject(IPath projectPath);
boolean wantRefreshOnStart();
}