/******************************************************************************* * Copyright (c) 2007, 2010 Symbian 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: * Andrew Ferguson (Symbian) - Initial implementation * Markus Schorn (Wind River Systems) *******************************************************************************/ package org.eclipse.cdt.internal.core.index.composite.cpp; import org.eclipse.cdt.core.dom.ast.EScopeKind; import org.eclipse.cdt.core.dom.ast.IASTName; import org.eclipse.cdt.core.dom.ast.IBinding; import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassScope; import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassType; import org.eclipse.cdt.core.dom.ast.cpp.ICPPConstructor; import org.eclipse.cdt.core.dom.ast.cpp.ICPPMethod; import org.eclipse.cdt.core.index.IIndexBinding; import org.eclipse.cdt.core.index.IIndexFileSet; import org.eclipse.cdt.internal.core.index.IIndexFragmentBinding; import org.eclipse.cdt.internal.core.index.composite.CompositeScope; import org.eclipse.cdt.internal.core.index.composite.ICompositesFactory; class CompositeCPPClassScope extends CompositeScope implements ICPPClassScope { public CompositeCPPClassScope(ICompositesFactory cf, IIndexFragmentBinding rbinding) { super(cf, rbinding); } public EScopeKind getKind() { return EScopeKind.eClassType; } public ICPPClassType getClassType() { return (ICPPClassType) cf.getCompositeBinding(rbinding); } public ICPPMethod[] getImplicitMethods() { ICPPClassScope rscope = (ICPPClassScope) ((ICPPClassType)rbinding).getCompositeScope(); ICPPMethod[] result = rscope.getImplicitMethods(); for(int i=0; i<result.length; i++) { result[i] = (ICPPMethod) cf.getCompositeBinding((IIndexFragmentBinding)result[i]); } return result; } public ICPPConstructor[] getConstructors() { ICPPClassScope rscope = (ICPPClassScope) ((ICPPClassType)rbinding).getCompositeScope(); ICPPConstructor[] result = rscope.getConstructors(); for(int i=0; i<result.length; i++) { result[i] = (ICPPConstructor) cf.getCompositeBinding((IIndexFragmentBinding)result[i]); } return result; } public IBinding getBinding(IASTName name, boolean resolve, IIndexFileSet fileSet) { IBinding binding = ((ICPPClassType)rbinding).getCompositeScope().getBinding(name, resolve, fileSet); return processUncertainBinding(binding); } public IBinding[] getBindings(IASTName name, boolean resolve, boolean prefixLookup, IIndexFileSet fileSet) { IBinding[] bindings = ((ICPPClassType)rbinding).getCompositeScope().getBindings(name, resolve, prefixLookup, fileSet); return processUncertainBindings(bindings); } public IBinding[] find(String name) { IBinding[] preresult = ((ICPPClassType)rbinding).getCompositeScope().find(name); return processUncertainBindings(preresult); } public IIndexBinding getScopeBinding() { return (IIndexBinding) getClassType(); } }