Package org.aspectj.org.eclipse.jdt.internal.core.jdom

Examples of org.aspectj.org.eclipse.jdt.internal.core.jdom.CompilationUnit


      name = documentPath.toCharArray();
    } catch(Exception e){
      // ignore
    }
    if (source == null || name == null) return; // could not retrieve document info (e.g. resource was discarded)
    CompilationUnit compilationUnit = new CompilationUnit(source, name);
    try {
      parser.parseCompilationUnit(compilationUnit, true/*full parse*/);
    } catch (Exception e) {
      if (JobManager.VERBOSE) {
        e.printStackTrace();
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.core.jdom.CompilationUnit

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.