blob: 5451ec38f705806fc086a87a3067730e5d7e0b76 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ant.internal.ui.debug.model;
import org.eclipse.ant.internal.ui.AntUIPlugin;
import org.eclipse.ant.internal.ui.debug.IAntDebugConstants;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.DebugPlugin;
import org.eclipse.debug.core.model.DebugElement;
/**
* Common function of Ant debug model elements
*/
public abstract class AntDebugElement extends DebugElement {
/**
* Constructs a new debug element contained in the given
* debug target.
*
* @param target debug target
*/
public AntDebugElement(AntDebugTarget target) {
super(target);
}
/* (non-Javadoc)
* @see org.eclipse.debug.core.model.IDebugElement#getModelIdentifier()
*/
public String getModelIdentifier() {
return IAntDebugConstants.ID_ANT_DEBUG_MODEL;
}
protected void abort(String message, Throwable e) throws DebugException {
throw new DebugException(new Status(IStatus.ERROR, AntUIPlugin.getUniqueIdentifier(),
DebugPlugin.INTERNAL_ERROR, message, e));
}
/**
* Throws a debug exception with the given message, error code, and underlying
* exception.
*/
protected void throwDebugException(String message) throws DebugException {
throw new DebugException(new Status(IStatus.ERROR, AntUIPlugin.getUniqueIdentifier(),
DebugException.TARGET_REQUEST_FAILED, message, null));
}
protected AntDebugTarget getAntDebugTarget() {
return (AntDebugTarget)super.getDebugTarget();
}
}