1 11 package org.eclipse.jdt.internal.codeassist.complete; 12 13 39 public class CompletionOnExceptionReference extends CompletionOnSingleTypeReference { 40 41 public CompletionOnExceptionReference(char[] source, long pos) { 42 43 super(source, pos); 44 } 45 46 public StringBuffer printExpression(int indent, StringBuffer output) { 47 48 return output.append("<CompleteOnException:").append(this.token).append('>'); } 50 } 51 | Popular Tags |