List of usage examples for org.eclipse.jdt.internal.compiler.ast TypeParameter sourceStart
int sourceStart();
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; }