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 / UnresolvedReferenceBinding.java
index fdf1c4c..6dee732 100644 (file)
@@ -14,29 +14,46 @@ import net.sourceforge.phpdt.core.compiler.CharOperation;
 
 public class UnresolvedReferenceBinding extends ReferenceBinding {
        ReferenceBinding resolvedType;
-UnresolvedReferenceBinding(char[][] compoundName, PackageBinding packageBinding) {
-       this.compoundName = compoundName;
-       this.fPackage = packageBinding;
-}
-String debugName() {
-       return toString();
-}
-ReferenceBinding resolve(LookupEnvironment environment) {
-       if (resolvedType != null) return resolvedType;
-
-       ReferenceBinding environmentType = fPackage.getType0(compoundName[compoundName.length - 1]);
-       if (environmentType == this)
-               environmentType = environment.askForType(compoundName);
-       if (environmentType != null && environmentType != this) { // could not resolve any better, error was already reported against it
-               resolvedType = environmentType;
-               environment.updateArrayCache(this, environmentType);
-               return environmentType; // when found, it replaces the unresolved type in the cache
+
+       UnresolvedReferenceBinding(char[][] compoundName,
+                       PackageBinding packageBinding) {
+               this.compoundName = compoundName;
+               this.fPackage = packageBinding;
        }
 
-       environment.problemReporter.isClassPathCorrect(compoundName, null);
-       return null; // will not get here since the above error aborts the compilation
-}
-public String toString() {
-       return "Unresolved type " + ((compoundName != null) ? CharOperation.toString(compoundName) : "UNNAMED"); //$NON-NLS-1$ //$NON-NLS-2$
-}
+       String debugName() {
+               return toString();
+       }
+
+       ReferenceBinding resolve(LookupEnvironment environment) {
+               if (resolvedType != null)
+                       return resolvedType;
+
+               ReferenceBinding environmentType = fPackage
+                               .getType0(compoundName[compoundName.length - 1]);
+               if (environmentType == this)
+                       environmentType = environment.askForType(compoundName);
+               if (environmentType != null && environmentType != this) { // could not
+                                                                                                                                       // resolve
+                                                                                                                                       // any
+                                                                                                                                       // better,
+                                                                                                                                       // error was
+                                                                                                                                       // already
+                                                                                                                                       // reported
+                                                                                                                                       // against
+                                                                                                                                       // it
+                       resolvedType = environmentType;
+                       environment.updateArrayCache(this, environmentType);
+                       return environmentType; // when found, it replaces the unresolved
+                                                                       // type in the cache
+               }
+
+               environment.problemReporter.isClassPathCorrect(compoundName, null);
+               return null; // will not get here since the above error aborts the
+                                               // compilation
+       }
+
+       public String toString() {
+               return "Unresolved type " + ((compoundName != null) ? CharOperation.toString(compoundName) : "UNNAMED"); //$NON-NLS-1$ //$NON-NLS-2$
+       }
 }