blob: 6f09f2f35413272ddaff36583867adc111381d48 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Chase Technology Ltd - http://www.chasetechnology.co.uk
* 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:
* Doug Satchwell (Chase Technology Ltd) - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsl.launching.model;
import org.eclipse.debug.core.DebugException;
import org.eclipse.debug.core.model.DebugElement;
import org.eclipse.debug.core.model.IDebugTarget;
import org.eclipse.debug.core.model.IDisconnect;
import org.eclipse.debug.core.model.ITerminate;
public abstract class XSLDebugElement extends DebugElement implements IDisconnect
{
public XSLDebugElement(IDebugTarget target)
{
super(target);
}
public String getModelIdentifier()
{
return IXSLConstants.ID_XSL_DEBUG_MODEL;
}
@SuppressWarnings("unchecked")
@Override
public Object getAdapter(Class adapter) {
if (adapter == ITerminate.class) {
return getDebugTarget();
}
return super.getAdapter(adapter);
}
public boolean canDisconnect()
{
return getDebugTarget().canDisconnect();
}
public void disconnect() throws DebugException
{
getDebugTarget().disconnect();
}
public boolean isDisconnected()
{
return getDebugTarget().isDisconnected();
}
}