blob: c45dd196b8cd03b4bce89c5e6d54ec716b60f50e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.corext.refactoring.typeconstraints;
import org.eclipse.jdt.core.dom.Expression;
import org.eclipse.jdt.core.dom.IMethodBinding;
import org.eclipse.jdt.core.dom.ITypeBinding;
import org.eclipse.jdt.core.dom.IVariableBinding;
import org.eclipse.jdt.core.dom.ReturnStatement;
import org.eclipse.jdt.core.dom.Type;
public interface IConstraintVariableFactory {
ConstraintVariable makeExpressionOrTypeVariable(Expression expression, IContext context);
DeclaringTypeVariable makeDeclaringTypeVariable(ITypeBinding memberTypeBinding);
DeclaringTypeVariable makeDeclaringTypeVariable(IVariableBinding fieldBinding);
DeclaringTypeVariable makeDeclaringTypeVariable(IMethodBinding methodBinding);
ParameterTypeVariable makeParameterTypeVariable(IMethodBinding methodBinding, int parameterIndex);
RawBindingVariable makeRawBindingVariable(ITypeBinding binding);
ReturnTypeVariable makeReturnTypeVariable(ReturnStatement returnStatement);
ReturnTypeVariable makeReturnTypeVariable(IMethodBinding methodBinding);
TypeVariable makeTypeVariable(Type type);
TypeVariable makeTypeVariable(ITypeBinding binding, String source, CompilationUnitRange range);
}