Makefile fixup
[org.ibex.tool.git] / src / org / eclipse / jdt / internal / compiler / lookup / ProblemFieldBinding.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 import org.eclipse.jdt.core.compiler.CharOperation;
14
15 public class ProblemFieldBinding extends FieldBinding {
16         private int problemId;
17         public FieldBinding closestMatch;
18                 
19 // NOTE: must only answer the subset of the name related to the problem
20
21 public ProblemFieldBinding(ReferenceBinding declaringClass, char[][] compoundName, int problemId) {
22         this(null, declaringClass, CharOperation.concatWith(compoundName, '.'), problemId);
23 }
24 public ProblemFieldBinding(ReferenceBinding declaringClass, char[] name, int problemId) {
25         this(null, declaringClass, name, problemId);
26 }
27 public ProblemFieldBinding(FieldBinding closestMatch, ReferenceBinding declaringClass, char[] name, int problemId) {
28         this.closestMatch = closestMatch;
29         this.declaringClass = declaringClass;
30         this.name = name;
31         this.problemId = problemId;
32 }
33 /* API
34 * Answer the problem id associated with the receiver.
35 * NoError if the receiver is a valid binding.
36 */
37
38 public final int problemId() {
39         return problemId;
40 }
41 }