Package org.aspectj.org.eclipse.jdt.internal.formatter.comment

Examples of org.aspectj.org.eclipse.jdt.internal.formatter.comment.JavaDocRegion


      case CodeFormatter.K_SINGLE_LINE_COMMENT:
        return new CommentRegion(document, range, formatter);
      case CodeFormatter.K_MULTI_LINE_COMMENT:
        return new MultiCommentRegion(document, range, formatter);
      case CodeFormatter.K_JAVA_DOC:
        return new JavaDocRegion(document, range, formatter);
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.formatter.comment.JavaDocRegion

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.