blob: 2455335b863a45df43ad5e46d6f7e19ac8bc5a47 [file] [log] [blame]
package org.eclipse.swt.examples.layouts;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
import org.eclipse.core.runtime.*;
import org.eclipse.ui.plugin.*;
/**
* The main plugin class to be used in the desktop.
*/
public class LayoutPlugin extends AbstractUIPlugin {
/**
* The constructor.
*/
public LayoutPlugin(IPluginDescriptor descriptor) {
super(descriptor);
}
/**
* Clean up
*/
public void shutdown() throws CoreException {
super.shutdown();
}
}