package org.eclipsebook.ch11.Ch11_02;
import org.eclipse.ui.plugin.*;
import org.eclipse.core.runtime.*;
/**
* The main plugin class to be used in the desktop.
*/
public class Ch11_02Plugin extends AbstractUIPlugin {
/**
* The constructor.
*/
public Ch11_02Plugin(IPluginDescriptor descriptor) {
super(descriptor);
}
}
|