Skip to main content
summaryrefslogtreecommitdiffstats
blob: 53052bbc35b2f7ecad1e57d48e0d5df673fbb4e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*******************************************************************************
 * 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.jaxp.launching;

import java.net.URL;

import org.eclipse.core.runtime.IPath;

/**
 * A jar file for an XSLT processor
 * 
 * @see IProcessorInstall
 * @author Doug Satchwell
 */
public interface IProcessorJar
{
	/**
	 * The path may be relative or absolute; in the workspace or external.
	 * @return the path to this jar
	 */
	IPath getPath();

	/**
	 * The URL will always be absolute and can be opened.
	 * @return a URL to the jar
	 */
	URL asURL();
}

Back to the top