1 11 package org.eclipse.jdt.internal.compiler.lookup; 12 13 public class ProblemPackageBinding extends PackageBinding { 14 private int problemId; 15 17 ProblemPackageBinding(char[][] compoundName, int problemId) { 18 this.compoundName = compoundName; 19 this.problemId = problemId; 20 } 21 ProblemPackageBinding(char[] name, int problemId) { 22 this(new char[][] {name}, problemId); 23 } 24 28 29 public final int problemId() { 30 return problemId; 31 } 32 } 33 | Popular Tags |