1 11 package org.eclipse.jface.text.presentation; 12 13 14 import org.eclipse.jface.text.ITextViewer; 15 16 17 62 public interface IPresentationReconciler { 63 64 78 void install(ITextViewer viewer); 79 80 84 void uninstall(); 85 86 94 IPresentationDamager getDamager(String contentType); 95 96 104 IPresentationRepairer getRepairer(String contentType); 105 } 106 | Popular Tags |