BlueJ

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Certes (talk | contribs) at 09:27, 26 August 2018 (Fix link to Java portal (via WP:JWB)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

BlueJ
Original author(s)Michael Kölling and John Rosenberg
Developer(s)BlueJ Team
Stable release
4.1.2 / November 9, 2017 (2017-11-09)[1]
Written inJava
Operating systemCross-platform
PlatformJava
Available inMultilingual
TypeIntegrated development environment
LicenseGNU General Public License v2 with the ClassPath exception
Websitebluej.org

BlueJ is an integrated development environment (IDE) for the Java programming language, developed mainly for educational purposes, but also suitable for small-scale software development. It runs with the help of JDK (Java Development Kit).

BlueJ was developed to support the learning and teaching of object-oriented programming, and its design differs from other development environments as a result.[2] The main screen graphically shows the class structure of an application under development (in a UML-like diagram), and objects can be interactively created and tested. This interaction facility, combined with a clean, simple user interface, allows easy experimentation with objects under development. Object-oriented concepts (classes, objects, communication through method calls) are represented visually and in its interaction design in the interface.

History

The development of BlueJ was started in 1999 by Michael Kölling and John Rosenberg at Monash University, as a successor to the BlueJ system. BlueJ is an IDE (Integrated Development Environment). BlueJ was an integrated system with its own programming language and environment, and was a relative of the Eiffel language. BlueJ implements the BlueJ environment design for the Java programming language.

In March 2009, the BlueJ project became free and open source software, and licensed under GNU GPL with the classpath exception.

BlueJ is currently being maintained by a team at King's College London, England, where Kölling works.

Functionality

BlueJ has a simpler interface than most professional IDEs, but its functionality is not a subset of those kinds of environment. While many of the standard development tools exist, such as an editor, compiler and runtime environment, it also offers tools that are specific to its educational goals and not found in this form in common professional environments. These includes interactive object creation and method invocation (via the "Object Bench"), simplified debugging and teamwork controls, interactive, line-based expression and statement evaluation (via the "Code Pad"), and automated creation of JUnit classes from recordings of interactive test sequences.

Visualisation

The BlueJ interface emphasises class structure (in preference of source code) by showing a UML-like diagram as its main screen. Class structures can be manipulated by the user, and the class relation display is generated automatically from the source code.

Source level structure is visualised through scope highlighting (the visual emphasis of lexical scope through use of graphical frames and background colour).

Interaction and experimentation

Supported interaction features include the ability to create objects interactively for ad-hoc testing and experimentation, and support for interactive invocation of public methods. Parameters may be passed and objects can be composed in interactive calls.

Interactive tests may be recorded and stored as standard unit test classes. Code fragments can be evaluated interactively in the Code Pad, which provides a Java-based REPL.

Supported languages

BlueJ supported programming in Java and in Stride [3]. Java support was provided in BlueJ since its inception, while Stride support was added in 2017.

Teacher support

Support for teachers using BlueJ in their classroom is provided via the Blueroom [4], an educator community site offering teaching resources and discussion forums. An introductory textbook is available [5].

See also

References

  1. ^ "Version History". Retrieved 2017-03-12.
  2. ^ "Using BlueJ to Introduce Programming" (PDF). Retrieved 2010-06-13.
  3. ^ Stride
  4. ^ Blueroom
  5. ^ Objects First With Java

Bibliography

External links