blob: af49ca4ff1a273caa711c507ba673d594d27b875 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 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.wst.xsl.ui.tests;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.Plugin;
/**
* The main plugin class to be used in the desktop.
*/
public class XSLModelXMLTestsPlugin extends Plugin {
//The shared instance.
private static XSLModelXMLTestsPlugin plugin;
/**
* The constructor.
*/
public XSLModelXMLTestsPlugin() {
super();
plugin = this;
}
/**
* Returns the shared instance.
*/
public static XSLModelXMLTestsPlugin getDefault() {
return plugin;
}
/**
* Returns the string from the plugin's resource bundle,
* or 'key' if not found.
*/
public static String getResourceString(String key) {
return key;
}
/**
* Returns the plugin's resource bundle,
*/
public ResourceBundle getResourceBundle() {
return null;
}
public static URL getInstallLocation() {
URL installLocation = Platform.getBundle("org.eclipse.wst.xsl.ui.tests").getEntry("/");
URL resolvedLocation = null;
try {
resolvedLocation = FileLocator.resolve(installLocation);
}
catch (IOException e) {
// impossible
throw new Error(e);
}
return resolvedLocation;
}
public static File getTestFile(String filepath) {
URL installURL = getInstallLocation();
//String scheme = installURL.getProtocol();
String path = installURL.getPath();
String location = path + filepath;
File result = new File(location);
return result;
}
}