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

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

Introduction

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

Prototype

public final int getStartPosition() 

Source Link

Document

Returns the character index into the original source file indicating where the source fragment corresponding to this node begins.

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;// w  w  w  . j a  va  2s  .  c  o  m
}