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

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

Introduction

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

Prototype

int sourceStart();

Source Link

Usage

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

License:Apache License

@Override
public boolean visit(TypeParameter typeParameter, BlockScope scope) {
    push(fASTHelper.convertNode(typeParameter),
            getSource(typeParameter.sourceStart(), typeParameter.declarationSourceEnd),
            typeParameter.sourceStart(), typeParameter.declarationSourceEnd);
    return false;
}