Package com.cb.eclipse.folding

Examples of com.cb.eclipse.folding.EnhancedPosition2


  private void handleCommentBlock(int start, int end) {

    if (advisor.shouldFoldBlockComment()) {
      boolean collapse = advisor.shouldCollapseBlockComment();
      regions.add(new EnhancedPosition2(start, end - start, getMetadata(collapse)));
    }
  }
View Full Code Here


  }

  private void handleJavadoc(int start, int end, IJavaElement owner) {
    if (advisor.shouldFoldJavadoc()) {
      boolean collapse = advisor.shouldCollapseJavadoc();
      regions.add(new EnhancedPosition2(start, end - start, getMetadata(collapse)));
    }
  }
View Full Code Here

TOP

Related Classes of com.cb.eclipse.folding.EnhancedPosition2

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.