/******************************************************************************* * Copyright (c) 2014 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: * Sergey Prigogin (Google) - initial API and implementation *******************************************************************************/ package org.eclipse.cdt.ui.extensions; import org.eclipse.cdt.core.index.IIndexName; import org.eclipse.cdt.core.model.ICElement; /** * @see ICallHierarchyProvider#findCalledBy * * <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. * * @since 5.8 */ public interface ICalledByResult { /** * Adds a call point to the list of call hierarchy results. * * @param elem the caller method * @param ref the call site */ public void add(ICElement elem, IIndexName ref); }