/******************************************************************************* * Copyright (c) 2002, 2009 IBM Corporation 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: * Rational Software - Initial API and implementation *******************************************************************************/ package org.eclipse.cdt.internal.core.model; import org.eclipse.cdt.core.model.CModelException; import org.eclipse.cdt.core.model.ICElement; import org.eclipse.cdt.core.model.IMethodTemplate; public class MethodTemplate extends Method implements IMethodTemplate { protected Template fTemplate; public MethodTemplate(ICElement parent, String name) { super(parent, name, ICElement.C_TEMPLATE_METHOD); fTemplate = new Template(name); } /** * Returns the parameterTypes. * @see org.eclipse.cdt.core.model.ITemplate#getTemplateParameterTypes() * @return String[] */ public String[] getTemplateParameterTypes() { return fTemplate.getTemplateParameterTypes(); } public String[] getTemplateArguments() { return fTemplate.getTemplateArguments(); } /** * Sets the fParameterTypes. * @param templateParameterTypes The template parameter types to set */ public void setTemplateParameterTypes(String[] templateParameterTypes) { fTemplate.setTemplateInfo(templateParameterTypes, null); } /** * @see org.eclipse.cdt.core.model.ITemplate#getNumberOfTemplateParameters() */ public int getNumberOfTemplateParameters() { return fTemplate.getNumberOfTemplateParameters(); } /** * @see org.eclipse.cdt.core.model.ITemplate#getTemplateSignature() */ /* * The signature in the outline view will be: * The class X followed by its template parameters, * then the scope resolution, then the function name, * followed by its template parameters, folowed by its * normal parameter list, then a colon then the function's * return type. */ public String getTemplateSignature() throws CModelException { StringBuffer sig = new StringBuffer(fTemplate.getTemplateSignature()); sig.append(this.getParameterClause()); if(isConst()) sig.append(" const"); //$NON-NLS-1$ if(isVolatile()) sig.append(" volatile"); //$NON-NLS-1$ if((this.getReturnType() != null) && (this.getReturnType().length() > 0)){ sig.append(" : "); //$NON-NLS-1$ sig.append(this.getReturnType()); } return sig.toString(); } }