Package org.eclipse.cdt.internal.core.dom.rewrite.commenthandler

Examples of org.eclipse.cdt.internal.core.dom.rewrite.commenthandler.NodeCommentMap


  /**
   * Creates a writer with an empty comment map.
   */
  public ASTWriterVisitor() {
    this(new NodeCommentMap());
  }
View Full Code Here


   * @return A <code>String</code> representing the source code for the node.
   * @throws ProblemRuntimeException
   *           if the node or one of it's children is a <code>IASTProblemNode</code>.
   */
  public String write(final IASTNode rootNode) throws ProblemRuntimeException {
    return write(rootNode, new NodeCommentMap());
  }
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.internal.core.dom.rewrite.commenthandler.NodeCommentMap

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.