Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5fafc58c0b4244865835453948e4897753dcfca2 (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
43
44
/*******************************************************************************
 * Copyright (c) 2007, 2008 Wind River Systems, 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:
 *    Markus Schorn - initial API and implementation
 *******************************************************************************/ 
package org.eclipse.cdt.internal.ui.callhierarchy;

import org.eclipse.cdt.core.model.ICElement;
import org.eclipse.cdt.core.model.ITranslationUnit;

/**
 * Represents a child of a node with multiple definitions.
 */
public class CHMultiDefChildNode extends CHNode {

    public CHMultiDefChildNode(CHMultiDefNode parent, ITranslationUnit fileOfReferences, long timestamp, ICElement decl, int linkageID) {
    	super(parent, fileOfReferences, timestamp, decl, linkageID);
    }
    
	@Override
	public int getReferenceCount() {
		return getParent().getReferenceCount();
	}
	
	@Override
	public CHReferenceInfo getReference(int idx) {
		return getParent().getReference(idx);
	}
	
	@Override
	public int getFirstReferenceOffset() {
		return getParent().getFirstReferenceOffset();
	}
	
	@Override
	public void addReference(CHReferenceInfo info) {
		assert false;
	}
}

Back to the top