blob: 9b2e7a8bd44911c95e60c9df38dd9dd0957e86d9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.core.runtime.Assert;
import org.eclipse.jdt.core.dom.IBinding;
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.internal.corext.dom.Bindings;
/**
* Tells the type which declares the member.
*/
public class DeclaringTypeVariable extends ConstraintVariable{
private final IBinding fMemberBinding;
protected DeclaringTypeVariable(ITypeBinding memberTypeBinding) {
super(memberTypeBinding.getDeclaringClass());
fMemberBinding= memberTypeBinding;
}
protected DeclaringTypeVariable(IVariableBinding fieldBinding) {
super(fieldBinding.getDeclaringClass());
Assert.isTrue(fieldBinding.isField());
fMemberBinding= fieldBinding;
}
protected DeclaringTypeVariable(IMethodBinding methodBinding) {
super(methodBinding.getDeclaringClass());
fMemberBinding= methodBinding;
}
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
public String toString() {
return "Decl(" + Bindings.asString(fMemberBinding) + ")"; //$NON-NLS-1$ //$NON-NLS-2$
}
public IBinding getMemberBinding() {
return fMemberBinding;
}
}