Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a7e7bce5d196630788e3b2e333d16e05ff322d3f (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
/*******************************************************************************
 * Copyright (c) 2004 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 Software Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.core.browser;

import org.eclipse.core.resources.IProject;


/**
 * A listener which gets notified when the type cache changes.
 * <p>
 * This interface may be implemented by clients.
 * </p>
 */
public interface ITypeCacheChangedListener {

	/**
	 * Notifies that the type cache for the given project has changed in some way
	 * and should be refreshed at some point to make it consistent with the current
	 * state of the C model.
	 * 
	 * @param project the given project
	 */
	void typeCacheChanged(IProject project);
}

Back to the top