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 import net.sourceforge.phpdt.core.compiler.CharOperation;
15 public class ProblemFieldBinding extends FieldBinding {
16 private int problemId;
18 // NOTE: must only answer the subset of the name related to the problem
20 public ProblemFieldBinding(ReferenceBinding declaringClass,
21 char[][] compoundName, int problemId) {
22 this(declaringClass, CharOperation.concatWith(compoundName, '.'),
26 public ProblemFieldBinding(ReferenceBinding declaringClass, char[] name,
28 this.declaringClass = declaringClass;
30 this.problemId = problemId;
34 * API Answer the problem id associated with the receiver. NoError if the
35 * receiver is a valid binding.
38 public final int problemId() {