* @see
* org.eclipse.jface.text.IInformationControlCreator#createInformationControl
* (org.eclipse.swt.widgets.Shell)
*/
public IInformationControl createInformationControl(Shell parent) {
fControl = new PHPSourceViewerInformationControl(parent, fOrientation) {
public void setInformation(String content) {
TextPresentation presentation = new TextPresentation();
HTML2TextReader reader = new HTML2TextReader(new StringReader(
content), presentation);
try {