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

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

Introduction

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

Prototype

public int sourceStart() 

Source Link

Usage

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

License:Apache License

private void visitTypeDeclarationModifiers(TypeDeclaration typeDeclaration) {
    fScanner.resetTo(typeDeclaration.declarationSourceStart, typeDeclaration.sourceStart());
    visitModifiers(typeDeclaration.modifiers);
}