A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / lookup / ProblemFieldBinding.java
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
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.lookup;
12
13 import net.sourceforge.phpdt.core.compiler.CharOperation;
14
15 public class ProblemFieldBinding extends FieldBinding {
16         private int problemId;
17
18         // NOTE: must only answer the subset of the name related to the problem
19
20         public ProblemFieldBinding(ReferenceBinding declaringClass,
21                         char[][] compoundName, int problemId) {
22                 this(declaringClass, CharOperation.concatWith(compoundName, '.'),
23                                 problemId);
24         }
25
26         public ProblemFieldBinding(ReferenceBinding declaringClass, char[] name,
27                         int problemId) {
28                 this.declaringClass = declaringClass;
29                 this.name = name;
30                 this.problemId = problemId;
31         }
32
33         /*
34          * API Answer the problem id associated with the receiver. NoError if the
35          * receiver is a valid binding.
36          */
37
38         public final int problemId() {
39                 return problemId;
40         }
41 }