Package org.eclipse.jdt.core.search

Examples of org.eclipse.jdt.core.search.PackageReferenceMatch


  }
  if (last == 0) return;
  if (last > positions.length) last = positions.length;
  int sourceStart = (int) (positions[0] >>> 32);
  int sourceEnd = ((int) positions[last - 1]);
  PackageReferenceMatch packageReferenceMatch = locator.newPackageReferenceMatch(element, accuracy, sourceStart, sourceEnd-sourceStart+1, reference);
  packageReferenceMatch.setLocalElement(localElement);
  this.match = packageReferenceMatch;
  locator.report(this.match);
}
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.core.search.PackageReferenceMatch

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.