Example usage for org.eclipse.jdt.core.dom ThisExpression getLength

List of usage examples for org.eclipse.jdt.core.dom ThisExpression getLength

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom ThisExpression getLength.

Prototype

public final int getLength() 

Source Link

Document

Returns the length in characters of the original source file indicating where the source fragment corresponding to this node ends.

Usage

From source file:org.bundlemaker.core.ui.editor.sourceviewer.referencedetail.JdtAstVisitor.java

License:Open Source License

@Override
public boolean visit(ThisExpression node) {

    // resolve type name
    resolveTypeName(node.getQualifier(), node.getStartPosition(), node.getLength());

    // visit the child nodes
    return true;//  ww w.j av  a  2 s .  c om
}