Examples of BinaryElementEncounteredException


Examples of edu.ohio_state.khatchad.refactoring.exceptions.BinaryElementEncounteredException

  public static ASTNode getASTNode(IJavaElement elem, IProgressMonitor monitor) {
    final IMember mem = getIMember(elem);
    final ICompilationUnit icu = mem.getCompilationUnit();
    if (icu == null)
      throw new BinaryElementEncounteredException(Messages.ASTNodeProcessor_SourceNotPresent,
          mem);
    final ASTNode root = Util.getCompilationUnit(icu, monitor);
    return root;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.