@Override
public void createPartControl(Composite parent) {
embeddedComposite = new EmbeddedSwingComposite(parent, SWT.NONE) {
protected JComponent createSwingComponent() {
try {
panel = new ClassbenchPanel();
return GuiUtils.wrapScroller(panel);
} catch (Exception exc) {
SwtDialog.show(exc);
throw new RuntimeException(exc);
}