List of usage examples for org.eclipse.jdt.internal.core LocalVariable getElementName
@Override
public String getElementName()
From source file:com.codenvy.ide.ext.java.server.internal.core.search.matching.LocalVariablePattern.java
License:Open Source License
public LocalVariablePattern(LocalVariable localVariable, int limitTo, int matchRule) { super(LOCAL_VAR_PATTERN, localVariable.getElementName().toCharArray(), limitTo, matchRule); this.localVariable = localVariable; }