Package edu.ohio_state.khatchad.refactoring.exceptions

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

Related Classes of edu.ohio_state.khatchad.refactoring.exceptions.BinaryElementEncounteredException

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.