Skip to content
JFace
EntityQ383070· pop 10· linked from 30 articles

JFace is defined by the Eclipse project as "a UI toolkit that provides helper classes for developing UI features that can be tedious to implement." The Standard Widget Toolkit (SWT) is an open source widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.

Key facts

Software.developer
Eclipse Foundation
Software.screenshot
frameless
Software.caption
The Eclipse IDE, a JFace-based application
Software.latest release version
3.9.1
Software.operating system
Cross-platform
Software.language
Multilingual
Software.genre
widget toolkit for the Java platform
Software.license
Eclipse Public License

via Wikipedia infobox

Official website

JFace - Eclipsepedia

wiki.eclipse.org

Link to the official site · 25,510 chars · not written by Vinony

Wikidata facts

Official website
wiki.eclipse.org/JFace
Image
EclipseScreenshot.png
Show 1 more fact
Sources (3)

via Wikidata · CC0

~3 min read

Article

6 sections
Contents
  • Structure
  • Example
  • See also
  • References
  • Bibliography
  • External links

JFace is defined by the Eclipse project as "a UI toolkit that provides helper classes for developing UI features that can be tedious to implement." The Standard Widget Toolkit (SWT) is an open source widget toolkit for Java designed to provide efficient, portable access to the user-interface facilities of the operating systems on which it is implemented.

==Structure== It is a layer that sits on top of the raw widget system, and provides classes for handling common UI programming tasks. It brings model view controller programming to the Standard Widget Toolkit. Provides Viewer classes that handle the tedious tasks of populating, sorting, filtering, and updating widgets Provides Actions to allow users to define their own behavior and to assign that behavior to specific components, e.g. menu items, tool items, push buttons, etc. Provides registries that hold Images and Fonts Defines standard dialogs and wizards, and defines a framework for building complex interactions with the user Its primary goal is to free the developer up, letting the developer focus on the implementation of his or her specific application without having to be concerned with the underlying widget system or solving problems that are common in almost all UI applications. A primary concern of the Eclipse group when developing JFace was that under no circumstances did they want to hide the SWT component implementation from the programmer. JFace is completely dependent on SWT, but SWT is not dependent on JFace. Furthermore, the Eclipse Workbench is built on both JFace and SWT; in some instances, it bypasses JFace and accesses SWT directly.

Connections

Categories