Package org.eclipse.jface.text

Examples of org.eclipse.jface.text.IRepairableDocument.repairLineInformation()


   * @see Eclipse 3.0
   */
  private void repairLineInformation(IDocument document) {
    if (document instanceof IRepairableDocument) {
      IRepairableDocument repairable = (IRepairableDocument) document;
      repairable.repairLineInformation();
    }
  }

  /**
   * Return the line index at the given character offset.
View Full Code Here


   * @since 3.0
   */
  private void repairLineInformation(IDocument document) {
    if (document instanceof IRepairableDocument) {
      IRepairableDocument repairable= (IRepairableDocument) document;
      repairable.repairLineInformation();
    }
  }

  /**
   * Returns the line for the given line number.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.