Makefile fixup
[org.ibex.tool.git] / repo / org.ibex.tool / src / org / eclipse / jdt / internal / compiler / lookup / ProblemMethodBinding.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 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
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package org.eclipse.jdt.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         if (closestMatch != null) this.declaringClass = closestMatch.declaringClass;
31 }
32 /* API
33 * Answer the problem id associated with the receiver.
34 * NoError if the receiver is a valid binding.
35 */
36
37 public final int problemId() {
38         return problemId;
39 }
40 }