Available pages on Eclipse
- Eclipse Plug-in Development Environment (PDE)
- Eclipse Rich Client Platform
- Equinox OSGi
- Eclipse Workbench Modification
- Restlet integration with Equinox and RCP
- Running Equinox OSGi
- Standard Widget Toolkit (SWT)
- Useful Eclipse Online Resources
- Useful Eclipse Plug-ins
Eclipse Programming Tips
How to hide the sash form separator from form?
SashForm sashForm = new SashForm(parent, SWT.NONE);
getToolkit().adapt(sashForm);
How to change drag and drop icon?
How to load an editor input into an EMF object
Resource resource = SDOUtil.createResourceSet().createResource(EditUIUtil.getURI(getEditorInput())); resource.load(null); Object content = resource.getContents().get(0);
