1 11 package org.eclipse.jface.text.hyperlink; 12 13 import org.eclipse.jface.text.ITextViewer; 14 15 16 26 public interface IHyperlinkPresenter { 27 28 34 boolean canShowMultipleHyperlinks(); 35 36 47 void showHyperlinks(IHyperlink[] hyperlinks) throws IllegalArgumentException ; 48 49 53 void hideHyperlinks(); 54 55 60 void install(ITextViewer textViewer); 61 62 65 void uninstall(); 66 } 67 | Popular Tags |