blob: eb42584d2c0e931326265fe9dd161b7523cd21ab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.codeassist.complete;
import org.eclipse.jdt.internal.compiler.ast.MarkerAnnotation;
import org.eclipse.jdt.internal.compiler.ast.TypeReference;
import org.eclipse.jdt.internal.compiler.lookup.BlockScope;
import org.eclipse.jdt.internal.compiler.lookup.TypeBinding;
public class CompletionOnMarkerAnnotationName extends MarkerAnnotation {
public CompletionOnMarkerAnnotationName(TypeReference type, int sourceStart){
super(type, sourceStart);
}
public TypeBinding resolveType(BlockScope scope) {
throw new CompletionNodeFound(this, null, scope);
}
}