blob: 31e4e58cc2b1caab894466598d18c27863199221 [file] [log] [blame]
package org.eclipse.swt.examples.controls;
/*
* (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 ControlPlugin extends AbstractUIPlugin {
/**
* The constructor.
*/
public ControlPlugin(IPluginDescriptor descriptor) {
super(descriptor);
}
/**
* Clean up
*/
public void shutdown() throws CoreException {
super.shutdown();
}
}