Package org.eclipse.wst.sse.core.internal.provisional.text

Examples of org.eclipse.wst.sse.core.internal.provisional.text.IStructuredDocument.makeReadOnly()


      return;
    }
    if (doc instanceof BasicStructuredDocument) {
      ((BasicStructuredDocument)doc).makeReadOnly(node.getStart(), node.getLength(), canInsertBefore, canInsertAfter);
    } else {
      doc.makeReadOnly(node.getStart(), node.getLength());
    }
  }

  static private void unlock(IStructuredDocumentRegion node) {
    if (node == null) {
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.