blob: 639b9116fa2c151d4ffb65e6c0e2e55a0d419b32 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* Microsoft Corporation - moved template related code to jdt.core.manipulation - https://bugs.eclipse.org/549989
*******************************************************************************/
package org.eclipse.jdt.internal.corext.template.java;
import org.eclipse.jface.text.templates.TemplateVariableType;
import org.eclipse.jdt.internal.corext.template.java.CompilationUnitCompletion.Variable;
import org.eclipse.jdt.internal.ui.text.template.contentassist.MultiVariable;
public final class JavaVariable extends MultiVariable {
private String fParamType;
public JavaVariable(TemplateVariableType type, String name, int[] offsets) {
super(type, name, offsets);
}
/*
* @see org.eclipse.jdt.internal.ui.text.template.contentassist.MultiVariable#toString(java.lang.Object)
* @since 3.3
*/
@Override
public String toString(Object object) {
if (object instanceof Variable)
return ((Variable) object).getName();
return super.toString(object);
}
/**
* Returns the type given as parameter to this variable.
*
* @return the type given as parameter to this variable
*/
public String getParamType() {
return fParamType;
}
/**
* @param paramType the paramType
* @since 3.3
*/
public void setParamType(String paramType) {
fParamType= paramType;
}
}