blob: ac214b89448716a00ce4307489d93defdb5766b7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2014 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.pde.api.tools.ui.internal.markers;
import org.eclipse.jdt.core.dom.ASTNode;
import org.eclipse.jdt.core.dom.ASTVisitor;
import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration;
import org.eclipse.jdt.core.dom.AnnotationTypeMemberDeclaration;
import org.eclipse.jdt.core.dom.BodyDeclaration;
import org.eclipse.jdt.core.dom.EnumConstantDeclaration;
import org.eclipse.jdt.core.dom.EnumDeclaration;
import org.eclipse.jdt.core.dom.FieldDeclaration;
import org.eclipse.jdt.core.dom.Initializer;
import org.eclipse.jdt.core.dom.MethodDeclaration;
import org.eclipse.jdt.core.dom.TypeDeclaration;
/**
* Finds an AST node at the given position in the AST, and allows access to the
* {@link BodyDeclaration} at that position
*
* @since 1.0.0
* @noextend This class is not intended to be subclassed by clients.
*/
public class NodeFinder extends ASTVisitor {
private BodyDeclaration declaration;
private int position;
/**
* Constructor
*
* @param position
*/
public NodeFinder(int position) {
this.position = position;
}
@Override
public boolean visit(AnnotationTypeDeclaration node) {
return visitNode(node);
}
@Override
public boolean visit(EnumDeclaration node) {
return visitNode(node);
}
@Override
public boolean visit(TypeDeclaration node) {
return visitNode(node);
}
@Override
public boolean visit(MethodDeclaration node) {
return visitNode(node);
}
@Override
public boolean visit(FieldDeclaration node) {
return visitNode(node);
}
@Override
public boolean visit(EnumConstantDeclaration node) {
return visitNode(node);
}
@Override
public boolean visit(AnnotationTypeMemberDeclaration node) {
return visitNode(node);
}
@Override
public boolean visit(Initializer node) {
return false;
}
/**
* Visit the {@link BodyDeclaration} node to see if it is at the specified
* position
*
* @param bodyDeclaration
* @return
*/
private boolean visitNode(BodyDeclaration bodyDeclaration) {
int start = bodyDeclaration.getStartPosition();
int end = bodyDeclaration.getLength() - 1 + start;
switch (bodyDeclaration.getNodeType()) {
case ASTNode.TYPE_DECLARATION:
case ASTNode.ENUM_DECLARATION:
case ASTNode.ANNOTATION_TYPE_DECLARATION:
if (start <= this.position && this.position <= end) {
this.declaration = bodyDeclaration;
return true;
}
return false;
case ASTNode.ENUM_CONSTANT_DECLARATION:
case ASTNode.FIELD_DECLARATION:
case ASTNode.METHOD_DECLARATION:
case ASTNode.ANNOTATION_TYPE_MEMBER_DECLARATION:
if (start <= this.position && this.position <= end) {
this.declaration = bodyDeclaration;
}
return false;
default:
return false;
}
}
/**
* @return the {@link BodyDeclaration} at the given position or
* <code>null</code> if one was not found at that position
*/
public BodyDeclaration getNode() {
return this.declaration;
}
}