blob: bb1fd7eb00cf07b30f432f9d35e871d85f015037 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2009 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.jdt.ui.tests.refactoring.infra;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.ResourcesPlugin;
public class RefactoringTestPlugin extends Plugin {
private static RefactoringTestPlugin fgDefault;
public RefactoringTestPlugin() {
fgDefault= this;
}
public static RefactoringTestPlugin getDefault() {
return fgDefault;
}
public static IWorkspace getWorkspace() {
return ResourcesPlugin.getWorkspace();
}
public InputStream getTestResourceStream(String fileName) throws IOException {
IPath path= new Path("resources").append(fileName);
URL url= new URL(getBundle().getEntry("/"), path.toString());
return url.openStream();
}
}