Use this tag for questions about JFace which is a Java application framework based on SWT.
The app is an Eclipse 3.6 based RCP (so jface version 3.5.2) running on windows 7. I have a custom View class that …
java swt eclipse-rcp jfaceIn my Eclipse RCP application I use the Selection Service as described in this nice article. There is a TreeViewer …
java eclipse-rcp jfaceI'm trying to add widgets like text boxes, buttons to a composite on click of a button. I've tried , but …
java user-interface swt jfaceIs it possible to add a Remove button to a cell in a table? I have a table with 5 columns, …
java button swt jface tableviewerQt solution is a single call to resizeColumnsToContent(), in .NET one can use TextRenderer.MeasureText(), JTable could use AUTO_RESIZE_…
java user-interface swt jfaceI use the org.eclipse.core.databinding framework to bind some Text fields in an SWT application. I add an …
java data-binding jfaceGroup group = new Group(parent, SWT.NONE); StyledText comment = new StyledText(group, SWT.BORDER_DASH); This creates a group with …
java swt jface