1 11 package org.eclipse.jface.text.presentation; 12 13 14 15 import org.eclipse.jface.text.DocumentEvent; 16 import org.eclipse.jface.text.IDocument; 17 import org.eclipse.jface.text.IRegion; 18 import org.eclipse.jface.text.ITypedRegion; 19 20 21 41 public interface IPresentationDamager { 42 43 48 void setDocument(IDocument document); 49 50 61 IRegion getDamageRegion(ITypedRegion partition, DocumentEvent event, boolean documentPartitioningChanged); 62 } 63 | Popular Tags |