Added by Tony Lam, last edited by Tony Lam on Jul 01, 2009  (view change)

Labels:

eclipse eclipse Delete
Enter labels to add to this page:
Wait Image 
Looking for a label? Just start typing.

Available pages on Eclipse

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?

http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet257.java

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);