1 11 package org.eclipse.jdt.internal.codeassist.select; 12 13 31 32 import org.eclipse.jdt.internal.compiler.ast.ImportReference; 33 34 public class SelectionOnImportReference extends ImportReference { 35 36 public SelectionOnImportReference(char[][] tokens , long[] positions, int modifiers) { 37 super(tokens, positions, false, modifiers); 38 } 39 public StringBuffer print(int indent, StringBuffer output, boolean withOnDemand) { 40 41 printIndent(indent, output).append("<SelectOnImport:"); for (int i = 0; i < tokens.length; i++) { 43 if (i > 0) output.append('.'); 44 output.append(tokens[i]); 45 } 46 return output.append('>'); 47 } 48 } 49 | Popular Tags |