View | Details | Raw Unified | Return to bug 98473 | Differences between
and this patch

Collapse All | Expand All

(-)dom/org/eclipse/jdt/core/dom/TypeBinding.java (-1 / +1 lines)
Lines 991-997 Link Here
991
	 * @see ITypeBinding#isInterface()
991
	 * @see ITypeBinding#isInterface()
992
	 */
992
	 */
993
	public boolean isInterface() {
993
	public boolean isInterface() {
994
		return this.binding.isInterface();
994
		return this.binding.isInterface() && !this.binding.isTypeVariable() && !this.binding.isWildcard();
995
	}
995
	}
996
996
997
	/*
997
	/*

Return to bug 98473