blob: baa08cd6c33081f2866d92e909316070bba24739 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.filebuffers.tests;
import org.eclipse.core.runtime.Plugin;
/**
* The main plug-in class to be used in the desktop.
*
* @since 3.0
*/
public class FileBuffersTestPlugin extends Plugin {
private static FileBuffersTestPlugin fgPlugin;
public FileBuffersTestPlugin() {
fgPlugin = this;
}
public static FileBuffersTestPlugin getDefault() {
return fgPlugin;
}
}