JDT codeassist module, nothing changed yet
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / codeassist / select / SelectionOnLocalName.java
diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/codeassist/select/SelectionOnLocalName.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/codeassist/select/SelectionOnLocalName.java
new file mode 100644 (file)
index 0000000..da3cc76
--- /dev/null
@@ -0,0 +1,38 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
+ * All rights reserved. This program and the accompanying materials 
+ * are made available under the terms of the Common Public License v0.5 
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v05.html
+ * 
+ * Contributors:
+ *     IBM Corporation - initial API and implementation
+ ******************************************************************************/
+package net.sourceforge.phpdt.internal.codeassist.select;
+
+import net.sourceforge.phpdt.internal.compiler.ast.Expression;
+import net.sourceforge.phpdt.internal.compiler.ast.LocalDeclaration;
+import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
+
+public class SelectionOnLocalName extends LocalDeclaration{
+       public SelectionOnLocalName(Expression expr, char[] name,       int sourceStart, int sourceEnd) {
+               super(expr, name, sourceStart, sourceEnd);
+       }
+       
+       public void resolve(BlockScope scope) {
+               super.resolve(scope);
+               throw new SelectionNodeFound(binding);
+       }
+       
+       public String toString(int tab) {
+               String s = tabString(tab);
+               s += "<SelectionOnLocalName:"; //$NON-NLS-1$
+               if (modifiers != AccDefault) {
+                       s += modifiersString(modifiers);
+               }
+               s += type.toString(0) + " " + new String(name()); //$NON-NLS-1$
+               if (initialization != null) s += " = " + initialization.toStringExpression(); //$NON-NLS-1$
+               s+= ">";//$NON-NLS-1$
+               return s;       
+       }
+}