JFace

Summary

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."[1] 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.

JFace
Developer(s)Eclipse Foundation
Stable release
3.9.1 / July 25, 2013 (2013-07-25)
Repository
  • git.eclipse.org/c/platform/eclipse.platform.ui.git/ Edit this at Wikidata
Operating systemCross-platform
Available inMultilingual
Typewidget toolkit for the Java platform
LicenseEclipse Public License
Websitewiki.eclipse.org/JFace

Structure edit

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.

  1. Provides Viewer classes that handle the tedious tasks of populating, sorting, filtering, and updating widgets
  2. 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.
  3. Provides registries that hold Images and Fonts
  4. Defines standard dialogs and wizards, and defines a framework for building complex interactions with the user
  5. 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.
  6. 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.

Example edit

The following is a basic Hello World program using JFace.

import org.eclipse.jface.window.ApplicationWindow;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.*;

public class HelloWorld extends ApplicationWindow {
    public static void main(String[] args) {
        new HelloWorld().run();
    }
    public HelloWorld() {
        super(null);
    }
    public void run() {
        setBlockOnOpen(true);
        open();
        Display.getCurrent().dispose();
    }
    protected Control createContents(Composite parent) {
        Label label = new Label(parent, SWT.CENTER);
        label.setText("Hello, World");
        return label;
    }
}

See also edit

References edit

  1. ^ Eclipse programmer's guide entry on JFace

Bibliography edit

  • Scarpino, Matthew; Holder, Stephen; Ng, Stanford; Mihalkovic, Laurent (November 28, 2004), SWT/JFace in Action: GUI Design with Eclipse 3.0 (1st ed.), Manning Publications, p. 496, ISBN 1-932394-27-3
  • Li Guojie, Jackwind (February 11, 2005), Professional Java Native Interfaces with SWT/JFace (1st ed.), Wrox Press, p. 528, ISBN 0-470-09459-1, archived from the original on December 26, 2014, retrieved July 21, 2009
  • Harris, Robert; Warner, Rob (June 21, 2004), The Definitive Guide to SWT and JFACE (1st ed.), Apress, p. 684, ISBN 1-59059-325-1, archived from the original on July 31, 2009, retrieved July 21, 2009

External links edit

  • Wiki JFace
  • Sam-bodden, Brian; Judd, Christopher (April 26, 2004). "Rich clients with the SWT and JFace". JavaWorld. Retrieved 2020-07-21.
  • Using the Eclipse GUI outside the Eclipse Workbench, Part 1: Using JFace and SWT in stand-alone mode, by Adrian Emmenis
  • Using the Eclipse GUI outside the Eclipse Workbench, Part 2: Using the JFace image registry, by Adrian Emmenis