List of usage examples for org.eclipse.jdt.core.dom Modifier getLocationInParent
public final StructuralPropertyDescriptor getLocationInParent()
null if this is a root node. From source file:org.autorefactor.refactoring.rules.RemoveUselessModifiersRefactoring.java
License:Open Source License
private void insertAt(Modifier m, int index) { final ASTBuilder b = this.ctx.getASTBuilder(); this.ctx.getRefactorings().insertAt(b.move(m), index, m.getLocationInParent(), m.getParent()); }