fConsoleMonitor = consoleMonitor;
fPHPHyperLink = link;
}
public void handleEvent(DebugError debugError) {
IHyperlink link = createLink(debugError);
String message = debugError.toString().trim();
fPHPHyperLink.addLink(link, message, message.length()
- debugError.getErrorTextLength());
fConsoleMonitor.append(debugError.toString() + '\n');
}