1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.lookup;
13 public class ProblemMethodBinding extends MethodBinding {
14 private int problemId;
15 public MethodBinding closestMatch;
16 public ProblemMethodBinding(char[] selector, TypeBinding[] args, int problemId) {
17 this.selector = selector;
18 this.parameters = (args == null || args.length == 0) ? NoParameters : args;
19 this.problemId = problemId;
21 public ProblemMethodBinding(char[] selector, TypeBinding[] args, ReferenceBinding declaringClass, int problemId) {
22 this.selector = selector;
23 this.parameters = (args == null || args.length == 0) ? NoParameters : args;
24 this.declaringClass = declaringClass;
25 this.problemId = problemId;
27 public ProblemMethodBinding(MethodBinding closestMatch, char[] selector, TypeBinding[] args, int problemId) {
28 this(selector, args, problemId);
29 this.closestMatch = closestMatch;
30 if (closestMatch != null) this.declaringClass = closestMatch.declaringClass;
33 * Answer the problem id associated with the receiver.
34 * NoError if the receiver is a valid binding.
37 public final int problemId() {