blob: a518a13bc0e7bed74852a520c1f7d0474c49ce81 [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;
import java.util.Map;
import java.util.Properties;
/**
* A particular type of XSLT Processor (e.g. Xalan) for which there may be any number of installs.
*
* @see IProcessorInstall
* @author Doug Satchwell
*/
public interface IProcessorType
{
String getId();
String getLabel();
boolean isJREDefault();
String getTransformerFactoryName();
IFeature[] getFeatures();
Map<String, String> getFeatureValues();
IOutputProperty[] getOutputProperties();
Properties getOutputPropertyValues();
}