View | Details | Raw Unified | Return to bug 178594
Collapse All | Expand All

(-)search/org/eclipse/jdt/core/search/MethodReferenceMatch.java (-13 lines)
Lines 125-141 Link Here
125
	public boolean isSuperInvocation() {
125
	public boolean isSuperInvocation() {
126
		return this.superInvocation;
126
		return this.superInvocation;
127
	}
127
	}
128
129
	/**
130
	 * Returns whether the reference is on a polymorphic method or not.
131
	 * Note that this field is only used for method reference. This happens when the reference
132
	 * is not implemented on the declaring class pattern but only on one of its super or sub type.
133
	 * 
134
	 * @return <code>true</code> if the reference is a polymorphic method or not,
135
	 * <code>false </code> otherwise
136
	 * @deprecated Will be removed soon...
137
	 */
138
	public boolean isPolymorphic() {
139
		return this.superInvocation;
140
	}
141
}
128
}

Return to bug 178594