1 11 12 package org.eclipse.jface.text; 13 14 29 public interface IDocumentExtension { 30 31 34 public interface IReplace { 35 36 42 void perform(IDocument document, IDocumentListener owner); 43 } 44 45 54 void registerPostNotificationReplace(IDocumentListener owner, IReplace replace) throws UnsupportedOperationException ; 55 56 60 void stopPostNotificationProcessing(); 61 62 68 void resumePostNotificationProcessing(); 69 70 82 void startSequentialRewrite(boolean normalize); 83 84 89 void stopSequentialRewrite(); 90 } 91 | Popular Tags |