blob: f4665baba69c58400604cb416681d57bf8b3edba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004 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.xml.core.tests;
import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.Plugin;
/**
* The main plugin class to be used in the desktop.
*/
public class SSEModelXMLTestsPlugin extends Plugin {
//The shared instance.
private static SSEModelXMLTestsPlugin plugin;
/**
* The constructor.
*/
public SSEModelXMLTestsPlugin() {
super();
plugin = this;
}
/**
* Returns the shared instance.
*/
public static SSEModelXMLTestsPlugin 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.xml.core.tests").getEntry("/");
URL resolvedLocation = null;
try {
resolvedLocation = Platform.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;
}
}