Package me.pixodro.j2cpp.core.rewrite.changegenerator

Examples of me.pixodro.j2cpp.core.rewrite.changegenerator.ChangeGeneratorWriterVisitor


   *           an <code>IASTProblemNode</code>.
   *
   * @see ASTCommenter#getCommentedNodeMap(org.eclipse.cdt.core.dom.ast.IASTTranslationUnit)
   */
  public String write(final IASTNode rootNode, final NodeCommentMap commentMap) throws ProblemRuntimeException {
    final ChangeGeneratorWriterVisitor writer = new ChangeGeneratorWriterVisitor(modificationStore, null, commentMap);
    if (rootNode != null) {
      rootNode.accept(writer);
    }
    return writer.toString();
  }
View Full Code Here

TOP

Related Classes of me.pixodro.j2cpp.core.rewrite.changegenerator.ChangeGeneratorWriterVisitor

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.