Example usage for org.eclipse.jdt.internal.compiler.ast FieldDeclaration sourceStart

List of usage examples for org.eclipse.jdt.internal.compiler.ast FieldDeclaration sourceStart

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.ast FieldDeclaration sourceStart.

Prototype

int sourceStart();

Source Link

Usage

From source file:ch.uzh.ifi.seal.changedistiller.ast.java.JavaDeclarationConverter.java

License:Apache License

private void visitFieldDeclarationModifiers(FieldDeclaration fieldDeclaration) {
    fScanner.resetTo(fieldDeclaration.declarationSourceStart, fieldDeclaration.sourceStart());
    visitModifiers(fieldDeclaration.modifiers);
}