Java org.eclipse.jdt.core.dom NodeFinder fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jdt.core.dom NodeFinder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jdt.core.dom NodeFinder.

The text is from its open source code.

Implementation

org.eclipse.jdt.core.dom.NodeFinder has the following implementations.
Click this link to see all its implementation.

Constructor

NodeFinder(ASTNode root, int start, int length)
Instantiate a new node finder using the given root node, the given start and the given length.

Method

ASTNodegetCoveredNode()
If the AST contains nodes whose range is equal to the selection, returns the innermost of those nodes.
ASTNodegetCoveringNode()
Returns the innermost node that fully contains the selection.
ASTNodeperform(ASTNode root, int start, int length)
Maps a selection to an ASTNode, where the selection is defined using a start and a length.
ASTNodeperform(ASTNode root, ISourceRange range)
Maps a selection to an ASTNode, where the selection is defined using a source range.
ASTNodeperform(ASTNode root, int start, int length, ITypeRoot source)
Maps a selection to an ASTNode, where the selection is given by a start and a length.