first scanner /parser copied from the jdt java version
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / lookup / ProblemMethodBinding.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v0.5 
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v05.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  ******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.lookup;
12
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;
20 }
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;
26 }
27 public ProblemMethodBinding(MethodBinding closestMatch, char[] selector, TypeBinding[] args, int problemId) {
28         this(selector, args, problemId);
29         this.closestMatch = closestMatch;
30 }
31 /* API
32 * Answer the problem id associated with the receiver.
33 * NoError if the receiver is a valid binding.
34 */
35
36 public final int problemId() {
37         return problemId;
38 }
39 }