blob: 970d62289b3652f7222b40b42797f7c735026e73 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.debug.ui.console;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.ui.console.IHyperlink;
import org.eclipse.ui.console.PatternMatchEvent;
import org.eclipse.ui.console.TextConsole;
/**
* creates JavaExceptionHyperLinks
*
* @since 3.1
*/
public class JavaExceptionConsoleTracker extends JavaConsoleTracker {
/* (non-Javadoc)
* @see org.eclipse.ui.console.IPatternMatchListenerDelegate#matchFound(org.eclipse.ui.console.PatternMatchEvent)
*/
@Override
public void matchFound(PatternMatchEvent event) {
try {
int offset = event.getOffset();
int length = event.getLength();
TextConsole console = getConsole();
String exceptionName;
exceptionName = console.getDocument().get(offset, length - 1);
IHyperlink link = new JavaExceptionHyperLink(console, exceptionName);
getConsole().addHyperlink(link, offset, length - 1);
} catch (BadLocationException e) {
}
}
}