Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JFace examples in Eclipse like SWT Examples?

Are there any all-in-one JFace controls example out there like the SWT Examples in Eclipse? Searching (googling and searching here on stackoverflow.com) did not help me.

It would be nice if it was a standalone app or an eclipse plugin.

Thank you.

like image 728
Grigory Avatar asked Dec 27 '09 12:12

Grigory


2 Answers

Aside from the SWT JFace examples and introduction courses, you have some projects based on JFace controls:

  • JFace Data Binding

alt text

  • CellLabelProvider TreeViewer example

alt text

  • Nebula project

Nebula is a place where different Eclipse-Projects and Independent developers collaborate on building Custom SWT widgets and reuseable UI-Components useable in UI-Applications built using SWT and JFace.

alt text

  • RCP Forms Plugin

The framework tries to hide some of the complexity of developing forms from you; as with all frameworks there might be points in time where it just does not work and you have to dig deeper into the secrets of SWT, JFace, UI Forms or Databinding

alt text

like image 120
VonC Avatar answered Oct 05 '22 23:10

VonC


There is no all-in-one showcase example, but individual samples are available in the Eclipse CVS. You can check out the org.eclipse.jface.snippets project from the Eclipse CVS repo (WebView: http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.jface.snippets)

like image 39
Prakash G. R. Avatar answered Oct 05 '22 23:10

Prakash G. R.