Package com.google.collide.shared.document

Examples of com.google.collide.shared.document.LineInfo.number()


  }

  private static Anchor createExecutionLineAnchor(Document document, int lineNumber) {
    LineInfo lineInfo = document.getLineFinder().findLine(lineNumber);
    Anchor anchor = document.getAnchorManager().createAnchor(EXECUTION_LINE_ANCHOR_TYPE,
        lineInfo.line(), lineInfo.number(), AnchorManager.IGNORE_COLUMN);
    anchor.setRemovalStrategy(Anchor.RemovalStrategy.SHIFT);
    return anchor;
  }
}
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.