blob: 5e78ade9c66a84c93d3e1329fcb02c2ba9f5450c [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.internal.debug.ui.tabs.processor;
import org.eclipse.wst.xsl.launching.IProcessorInstall;
import org.eclipse.wst.xsl.launching.IProcessorJar;
import org.eclipse.wst.xsl.launching.ProcessorInstall;
public class InstallStandin extends ProcessorInstall
{
public InstallStandin(IProcessorInstall install)
{
super(install.getId(), install.getName(), install.getProcessorType().getId(), install.getProcessorJars(), install.getDebugger() != null ? install.getDebugger().getId() : null, install
.getSupports(), install.isContributed());
}
public InstallStandin(String id, String name, String typeId, String debuggerId, IProcessorJar[] jars)
{
super(id, name, typeId, jars, debuggerId, "", false); //$NON-NLS-1$
}
}